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

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

Color Characteristics

Mood
Style
Muted Warm
Use case
Text Print

Accessibility Simulation

Deuteranopia #AAAAC8
Protanopia #9F9FC9
Tritanopia #C6A0A0
Achromatopsia #A9A9A9

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.

Similar Named Colors

Light Grayish Magenta #CC99CC ΔE 0.74
Light Medium Orchid #D39BCB ΔE 1.64
Lilac #C8A2C8 ΔE 3.46
Plum #DDA0DD ΔE 4.27

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