Pastel Violet
HEX: #CB99C9 | Modern Palette
Color Specifications
#CB99C9
203, 153, 201
302°, 32% ,69%
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
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 #CB99C9 from deepest shade to lightest tint.
Frequently Asked Questions
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);
}