Pastel Violet
HEX: #CB99C9 | Modern Palette
On White
2.35:1
FAIL
On Black
8.94:1
PASS
Color Specifications
HEX
#CB99C9
RGB
203, 153, 201
HSL
302°, 32% ,69%
CMYK
0, 25, 1, 20
About Pastel Violet
Pastel Violet (#CB99C9) is a color with RGB(203, 153, 201) and HSL(302.4°, 32.5%, 69.8%). In design, it fits Muted, Warm styles and is suitable for Text, Print. Its complementary color is #99CB9B, which creates strong contrast. Its triadic palette includes #C9CB99 and #99C9CB.
- HEX: #CB99C9
- RGB: 203, 153, 201
- HSL: 302.4°, 32.5%, 69.8%
- Style: Muted, Warm
- Use case: Text, Print
- Complementary color: #99CB9B
- Triadic colors: #C9CB99, #99C9CB
Live Components
LIGHT
DARK
System Notification Box
Color Palettes
Pastel Violet #CB99C9 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
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
Pastel Violet #CB99C9 pairs with #99CB9B as its complementary color, and #C9CB99 and #99C9CB in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Pastel Violet (#CB99C9) is a color with RGB(203, 153, 201) and HSL(302.4°, 32.5%, 69.8%).
#CB99C9 pairs strongly with #99CB9B as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.
#CB99C9 is suitable for Text, Print and works well with Muted, Warm styles.
Code Snippets
/* Background */
.element {
background-color: #CB99C9;
}
/* Text */
.element {
color: #CB99C9;
}
/* Border */
.element {
border: 1px solid #CB99C9;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CB99C9,
#99CB9B
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CB99C9,
#99CB9B
);
}
// SCSS variable
$pastel-violet: #CB99C9;
// With RGB channels (useful for rgba() usage)
$pastel-violet-r: 203;
$pastel-violet-g: 153;
$pastel-violet-b: 201;
// Usage
.element {
background-color: $pastel-violet;
color: rgba($pastel-violet-r, $pastel-violet-g, $pastel-violet-b, 0.8);
}