Magenta-pink

HEX: #CC338B | Modern Palette

On White
4.76:1
PASS
On Black
4.41:1
FAIL

Color Specifications

HEX
#CC338B
RGB
204, 51, 139
HSL
325°, 75% ,80%
CMYK
0, 75, 31.86, 20

About Magenta-pink

Magenta-pink (#CC338B) is a color with RGB(204, 51, 139) and HSL(325.49°, 75%, 80%). It is commonly associated with Playful, Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #33CC74, which creates strong contrast. Its triadic palette includes #8BCC33 and #338BCC. The name comes from Magenta-pink (English (descriptive compound)).

  • HEX: #CC338B
  • RGB: 204, 51, 139
  • HSL: 325.49°, 75%, 80%
  • Mood: Playful, Romantic
  • Style: Warm
  • Use case: Text, Button, Background
  • Complementary color: #33CC74
  • Triadic colors: #8BCC33, #338BCC
  • The name comes from Magenta-pink (English (descriptive compound)).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

Color Harmonies

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

Shades & Tints

A seamless scale of #CC338B from deepest shade to lightest tint.

Color Characteristics

Style
Warm

Accessibility Simulation

Deuteranopia #7B7B88
Protanopia #57578C
Tritanopia #C74646
Achromatopsia #737373

Frequently Asked Questions

Magenta-pink (#CC338B) is a color with RGB(204, 51, 139) and HSL(325.49°, 75%, 80%).

#CC338B pairs strongly with #33CC74 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#CC338B is suitable for Text, Button, Background and works well with Warm styles.

#CC338B is commonly associated with Playful, Romantic.

The name Magenta-pink is linked to Magenta-pink from English (descriptive compound), meaning A color that is a blend or intermediate shade between magenta and pink, often leaning more towards the magenta side but with a noticeable pinkish hue..

Name, History & Etymology

Origin Word Magenta-pink
Meaning A color that is a blend or intermediate shade between magenta and pink, often leaning more towards the magenta side but with a noticeable pinkish hue.
Language English (descriptive compound)
First Recorded Use Late 19th - Early 20th Century (as a specific color descriptor)

History

Magenta itself was named after the Battle of Magenta in 1859, coinciding with the discovery of the fuchsine dye that produced this color. Pink has a much older history, deriving from the flower. The compound 'magenta-pink' represents a common linguistic strategy to describe intermediate or blended colors by combining two known color terms. It serves to differentiate it from a pure magenta (which can be more purplish-red) and a pure pink (which is typically lighter and less saturated). The specific hex code #cc338b places it firmly in this blended territory, being a vibrant, deep pink with strong magenta undertones.

First Recorded Use

While 'magenta' and 'pink' have older origins, the compound 'magenta-pink' as a precise color descriptor likely emerged as color naming became more nuanced, particularly with the advent of synthetic dyes and more precise color classification in fashion, art, and printing. Specific documented first uses are hard to pinpoint for such descriptive compounds, but its usage would have solidified in the late 19th to early 20th century.

Cultural Associations

This color, like magenta and pink, often carries associations of vibrancy, femininity, playfulness, and sometimes boldness. It's frequently seen in fashion, cosmetics, and design where a striking yet approachable color is desired. It can evoke feelings of romance, energy, and creativity. In some contexts, it might be associated with 'girly' aesthetics, but its depth also allows for more sophisticated applications.

Similar Named Colors

Royal Fuchsia #CA2C92 ΔE 2.25
Smitten #C84186 ΔE 2.43
Medium Red Violet #BB3385 ΔE 3.53
Deep Cerise #DA3287 ΔE 3.53

Code Snippets

/* Background */
.element {
    background-color: #CC338B;
}

/* Text */
.element {
    color: #CC338B;
}

/* Border */
.element {
    border: 1px solid #CC338B;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #CC338B,
        #A6F2C6
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #CC338B,
        #A6F2C6
    );
}

// SCSS variable
$magenta-pink: #CC338B;

// With RGB channels (useful for rgba() usage)
$magenta-pink-r: 204;
$magenta-pink-g: 51;
$magenta-pink-b: 139;

// Usage
.element {
    background-color: $magenta-pink;
    color: rgba($magenta-pink-r, $magenta-pink-g, $magenta-pink-b, 0.8);
}