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
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
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);
}