Dutch White
HEX: #EFDFBB | Modern Palette
Color Specifications
#EFDFBB
239, 223, 187
41°, 21% ,93%
0, 6.69, 21.76, 6.27
About Dutch White
Dutch White (#EFDFBB) is a color with RGB(239, 223, 187) and HSL(41.54°, 21.76%, 93.73%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #BBCBEF, which creates strong contrast. Its triadic palette includes #BBEFDF and #DFBBEF.
- HEX: #EFDFBB
- RGB: 239, 223, 187
- HSL: 41.54°, 21.76%, 93.73%
- Style: Pastel, Warm
- Use case: Text, Background, Print
- Complementary color: #BBCBEF
- Triadic colors: #BBEFDF, #DFBBEF
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 #EFDFBB from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#E4E4BB
#E1E1BB
#F3DBDB
#E0E0E0
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #EFDFBB;
}
/* Text */
.element {
color: #EFDFBB;
}
/* Border */
.element {
border: 1px solid #EFDFBB;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#EFDFBB,
#ECEEF2
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#EFDFBB,
#ECEEF2
);
}
// SCSS variable
$dutch-white: #EFDFBB;
// With RGB channels (useful for rgba() usage)
$dutch-white-r: 239;
$dutch-white-g: 223;
$dutch-white-b: 187;
// Usage
.element {
background-color: $dutch-white;
color: rgba($dutch-white-r, $dutch-white-g, $dutch-white-b, 0.8);
}