Pastel Gray
HEX: #CFCFC4 | Modern Palette
Color Specifications
#CFCFC4
207, 207, 196
60°, 10% ,79%
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
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 #CFCFC4 from deepest shade to lightest tint.
Frequently Asked Questions
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);
}