Soap
HEX: #CEC8EF | Modern Palette
Color Specifications
#CEC8EF
206, 200, 239
249°, 16% ,93%
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
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 #CEC8EF from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#CACAEF
#C9C9EF
#C8CDCD
#CCCCCC
Frequently Asked Questions
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);
}