Light Grayish Magenta

HEX: #CC99CC | Modern Palette

On White
2.33:1
FAIL
On Black
9.00:1
PASS

Color Specifications

HEX
#CC99CC
RGB
204, 153, 204
HSL
300°, 25% ,80%
CMYK
0, 25, 0, 20

About Light Grayish Magenta

Light Grayish Magenta (#CC99CC) is a color with RGB(204, 153, 204) and HSL(300°, 25%, 80%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Border. Its complementary color is #99CC99, which creates strong contrast. Its triadic palette includes #CCCC99 and #99CCCC.

  • HEX: #CC99CC
  • RGB: 204, 153, 204
  • HSL: 300°, 25%, 80%
  • Style: Pastel, Warm
  • Use case: Text, Background, Border
  • Complementary color: #99CC99
  • Triadic colors: #CCCC99, #99CCCC

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

Color Characteristics

Mood
Style
Pastel Warm

Accessibility Simulation

Deuteranopia #AAAACB
Protanopia #A0A0CC
Tritanopia #C6A1A1
Achromatopsia #AAAAAA

Frequently Asked Questions

Light Grayish Magenta (#CC99CC) is a color with RGB(204, 153, 204) and HSL(300°, 25%, 80%).

#CC99CC pairs strongly with #99CC99 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#CC99CC is suitable for Text, Background, Border and works well with Pastel, Warm styles.

Similar Named Colors

Pastel Violet #CB99C9 ΔE 0.74
Light Medium Orchid #D39BCB ΔE 1.81
Plum #DDA0DD ΔE 3.74
Lilac #C8A2C8 ΔE 3.92

Code Snippets

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

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

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

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

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

// SCSS variable
$light-grayish-magenta: #CC99CC;

// With RGB channels (useful for rgba() usage)
$light-grayish-magenta-r: 204;
$light-grayish-magenta-g: 153;
$light-grayish-magenta-b: 204;

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