Light Grayish Magenta
HEX: #CC99CC | Modern Palette
Color Specifications
#CC99CC
204, 153, 204
300°, 25% ,80%
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
Color Palettes
Light Grayish Magenta #CC99CC is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Light Grayish Magenta #CC99CC pairs with #99CC99 as its complementary color, and #CCCC99 and #99CCCC in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#AAAACB
#A0A0CC
#C6A1A1
#AAAAAA
Frequently Asked Questions
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);
}