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

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

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

Mood
Style
Pastel Warm
Use case
Text Background Print

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.

Similar Named Colors

Wheat #F5DEB3 ΔE 2.72
Lemon Meringue #F6EABE ΔE 3.70
Pearl #EAE0C8 ΔE 3.89
Banana Mania #FAE7B5 ΔE 3.94

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);
}