Pastel Gray

HEX: #CFCFC4 | Modern Palette

On White
1.57:1
FAIL
On Black
13.38:1
PASS

Color Specifications

HEX
#CFCFC4
RGB
207, 207, 196
HSL
60°, 10% ,79%
CMYK
0, 0, 5, 19

About Pastel Gray

Pastel Gray (#CFCFC4) is a color with RGB(207, 207, 196) and HSL(60°, 10.3%, 79%). It is commonly associated with Minimal moods. In design, it fits Pastel, Warm styles and is suitable for Text, Background, Border. Its complementary color is #C4C4CF, which creates strong contrast. Its triadic palette includes #C4CFCF and #CFC4CF.

  • HEX: #CFCFC4
  • RGB: 207, 207, 196
  • HSL: 60°, 10.3%, 79%
  • Mood: Minimal
  • Style: Pastel, Warm
  • Use case: Text, Background, Border
  • Complementary color: #C4C4CF
  • Triadic colors: #C4CFCF, #CFC4CF

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

Color Characteristics

Mood
Minimal
Style
Pastel Warm

Accessibility Simulation

Deuteranopia #CFCFC4
Protanopia #CFCFC4
Tritanopia #D0CECE
Achromatopsia #CECECE

Frequently Asked Questions

Pastel Gray (#CFCFC4) is a color with RGB(207, 207, 196) and HSL(60°, 10.3%, 79%).

#CFCFC4 pairs strongly with #C4C4CF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#CFCFC4 is suitable for Text, Background, Border and works well with Pastel, Warm styles.

#CFCFC4 is commonly associated with Minimal.

Similar Named Colors

Timberwolf #DBD7D2 ΔE 4.52
Bone #E3DAC9 ΔE 5.28
Light Gray #D3D3D3 ΔE 5.56
Gainsboro #DCDCDC ΔE 6.32

Code Snippets

/* Background */
.element {
    background-color: #CFCFC4;
}

/* Text */
.element {
    color: #CFCFC4;
}

/* Border */
.element {
    border: 1px solid #CFCFC4;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #CFCFC4,
        #C4C4CF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #CFCFC4,
        #C4C4CF
    );
}

// SCSS variable
$pastel-gray: #CFCFC4;

// With RGB channels (useful for rgba() usage)
$pastel-gray-r: 207;
$pastel-gray-g: 207;
$pastel-gray-b: 196;

// Usage
.element {
    background-color: $pastel-gray;
    color: rgba($pastel-gray-r, $pastel-gray-g, $pastel-gray-b, 0.8);
}