Dutch White
HEX: #EFDFBB | Modern Palette
On White
1.32:1
FAIL
On Black
15.94:1
PASS
Color Specifications
HEX
#EFDFBB
RGB
239, 223, 187
HSL
41°, 21% ,93%
CMYK
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
LIGHT
DARK
System Notification Box
Color Palettes
Dutch White #EFDFBB 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
Dutch White #EFDFBB pairs with #BBCBEF as its complementary color, and #BBEFDF and #DFBBEF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
Deuteranopia
#E4E4BB
Protanopia
#E1E1BB
Tritanopia
#F3DBDB
Achromatopsia
#E0E0E0
Frequently Asked Questions
Dutch White (#EFDFBB) is a color with RGB(239, 223, 187) and HSL(41.54°, 21.76%, 93.73%).
#EFDFBB pairs strongly with #BBCBEF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.
#EFDFBB is suitable for Text, Background, Print and works well with Pastel, Warm styles.
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);
}