Deep Magenta

HEX: #CC00CC | Modern Palette

On White
4.73:1
PASS
On Black
4.44:1
FAIL

Color Specifications

HEX
#CC00CC
RGB
204, 0, 204
HSL
300°, 100% ,40%
CMYK
0, 100, 0, 20

About Deep Magenta

Deep Magenta (#CC00CC) is a color with RGB(204, 0, 204) and HSL(300°, 100%, 40%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #00CC00, which creates strong contrast. Its triadic palette includes #CCCC00 and Robin Egg Blue (#00CCCC). The name comes from Deep Magenta (English).

  • HEX: #CC00CC
  • RGB: 204, 0, 204
  • HSL: 300°, 100%, 40%
  • Mood: Energetic, Bold
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #00CC00
  • Triadic colors: #CCCC00, Robin Egg Blue (#00CCCC)
  • The name comes from Deep Magenta (English).

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 #CC00CC from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #7474CA
Protanopia #4949CC
Tritanopia #BF4E4E
Achromatopsia #737373

Frequently Asked Questions

Deep Magenta (#CC00CC) is a color with RGB(204, 0, 204) and HSL(300°, 100%, 40%).

#CC00CC pairs strongly with #00CC00 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#CC00CC is suitable for Text, Button, Accent and works well with Vivid, Warm styles.

#CC00CC is commonly associated with Energetic, Bold.

The name Deep Magenta is linked to Deep Magenta from English, meaning A vivid, purplish-red color, specifically a darker or more intense shade of magenta..

Name, History & Etymology

Origin Word Deep Magenta
Meaning A vivid, purplish-red color, specifically a darker or more intense shade of magenta.
Language English
First Recorded Use Late 19th Century (for 'magenta'), Mid-20th Century onwards (for 'Deep Magenta' as a specific shade descriptor)

History

Magenta was one of the first aniline dyes, discovered shortly after the Battle of Magenta in 1859, and its vibrant, purplish-red hue quickly became popular. The dye was initially called 'fuchsine' or 'rosaniline' but was renamed 'magenta' to capitalize on the recent military victory. As color science and art evolved, the need for more specific descriptors arose. 'Deep Magenta' distinguishes a particular intensity or darkness within the magenta spectrum, often used in art, fashion, and digital color specifications (like the #cc00cc hex code, which is a very pure, saturated magenta with a strong red component).

First Recorded Use

The term 'magenta' itself was coined in 1859, named after the Battle of Magenta in Italy. 'Deep Magenta' as a specific descriptor for a darker, more intense version of this color would have emerged as color naming became more precise, particularly with the advent of standardized color systems and digital color representation.

Cultural Associations

Magenta is a color often associated with creativity, innovation, and individuality. It's a vibrant, energetic color that can be seen as both playful and sophisticated. In color psychology, it's sometimes linked to emotional balance and spiritual awareness, being a blend of red's energy and blue's stability. In digital printing (CMYK), magenta is one of the primary subtractive colors. 'Deep Magenta' specifically conveys a sense of richness and intensity, often used to evoke luxury or drama.

Similar Named Colors

Steel Pink #CC33CC ΔE 3.37
Vivid Mulberry #B80CE3 ΔE 5.30
Byzantine #BD33A4 ΔE 6.60
Vivid Orchid #CC00FF ΔE 7.07

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #CC00CC,
        #00CC00
    );
}

// SCSS variable
$deep-magenta: #CC00CC;

// With RGB channels (useful for rgba() usage)
$deep-magenta-r: 204;
$deep-magenta-g: 0;
$deep-magenta-b: 204;

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