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
Pastel Gray #CFCFC4 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Pastel Gray #CFCFC4 pairs with #C4C4CF as its complementary color, and #C4CFCF and #CFC4CF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}