Soap
HEX: #CEC8EF | Modern Palette
On White
1.60:1
FAIL
On Black
13.13:1
PASS
Color Specifications
HEX
#CEC8EF
RGB
206, 200, 239
HSL
249°, 16% ,93%
CMYK
13.81, 16.32, 0, 6.27
About Soap
Soap (#CEC8EF) is a color with RGB(206, 200, 239) and HSL(249.23°, 16.32%, 93.73%). In design, it fits Pastel, Cool styles and is suitable for Text, Background, Print. Its complementary color is #E9EFC8, which creates strong contrast. Its triadic palette includes #EFCEC8 and #C8EFCE.
- HEX: #CEC8EF
- RGB: 206, 200, 239
- HSL: 249.23°, 16.32%, 93.73%
- Style: Pastel, Cool
- Use case: Text, Background, Print
- Complementary color: #E9EFC8
- Triadic colors: #EFCEC8, #C8EFCE
Live Components
LIGHT
DARK
System Notification Box
Color Palettes
Soap #CEC8EF is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
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
Soap #CEC8EF pairs with #E9EFC8 as its complementary color, and #EFCEC8 and #C8EFCE in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
Deuteranopia
#CACAEF
Protanopia
#C9C9EF
Tritanopia
#C8CDCD
Achromatopsia
#CCCCCC
Frequently Asked Questions
Soap (#CEC8EF) is a color with RGB(206, 200, 239) and HSL(249.23°, 16.32%, 93.73%).
#CEC8EF pairs strongly with #E9EFC8 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.
#CEC8EF is suitable for Text, Background, Print and works well with Pastel, Cool styles.
Code Snippets
/* Background */
.element {
background-color: #CEC8EF;
}
/* Text */
.element {
color: #CEC8EF;
}
/* Border */
.element {
border: 1px solid #CEC8EF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CEC8EF,
#F1F2EC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CEC8EF,
#F1F2EC
);
}
// SCSS variable
$soap: #CEC8EF;
// With RGB channels (useful for rgba() usage)
$soap-r: 206;
$soap-g: 200;
$soap-b: 239;
// Usage
.element {
background-color: $soap;
color: rgba($soap-r, $soap-g, $soap-b, 0.8);
}