Azureish White

HEX: #DBE9F4 | Modern Palette

On White
1.24:1
FAIL
On Black
16.97:1
PASS

Color Specifications

HEX
#DBE9F4
RGB
219, 233, 244
HSL
206°, 10% ,95%
CMYK
10.25, 4.51, 0, 4.31

About Azureish White

Azureish White (#DBE9F4) is a color with RGB(219, 233, 244) and HSL(206.4°, 10.25%, 95.69%). It is commonly associated with Minimal moods. In design, it fits Pastel, Cool styles and is suitable for Text, Background, Print. Its complementary color is #F4E6DB, which creates strong contrast. Its triadic palette includes #F4DBE9 and #E9F4DB. The name comes from Azureish White (English).

  • HEX: #DBE9F4
  • RGB: 219, 233, 244
  • HSL: 206.4°, 10.25%, 95.69%
  • Mood: Minimal
  • Style: Pastel, Cool
  • Use case: Text, Background, Print
  • Complementary color: #F4E6DB
  • Triadic colors: #F4DBE9, #E9F4DB
  • The name comes from Azureish White (English).

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 #DBE9F4 from deepest shade to lightest tint.

Color Characteristics

Mood
Minimal
Style
Pastel Cool
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #E5E5F4
Protanopia #E8E8F4
Tritanopia #D9EAEA
Achromatopsia #E7E7E7

Frequently Asked Questions

Azureish White (#DBE9F4) is a color with RGB(219, 233, 244) and HSL(206.4°, 10.25%, 95.69%).

#DBE9F4 pairs strongly with #F4E6DB as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#DBE9F4 is suitable for Text, Background, Print and works well with Pastel, Cool styles.

#DBE9F4 is commonly associated with Minimal.

The name Azureish White is linked to Azureish White from English, meaning A shade of white with a noticeable hint of azure (sky blue)..

Name, History & Etymology

Origin Word Azureish White
Meaning A shade of white with a noticeable hint of azure (sky blue).
Language English
First Recorded Use 21st Century

History

The term "Azureish White" is a descriptive color name that emerged with the proliferation of digital color systems and web development. It's not a traditional, historically recognized color name like 'crimson' or 'sepia'. Instead, it's a compound adjective used to precisely describe a color that is predominantly white but clearly contains an undertone of azure. Its usage became more common as designers and developers needed more specific language to differentiate subtle color variations, especially within the hexadecimal and RGB color models. The specific hex code #dbe9f4 is one such representation of this descriptive color.

First Recorded Use

Early 2000s (primarily in digital color specifications and web design)

Cultural Associations

This color, and its name, doesn't carry significant historical or cultural weight in the way ancient dyes or pigments do. Its cultural relevance is primarily within digital design, user interface (UI) design, and web aesthetics, where light, airy, and clean colors are often favored for their modern and minimalist appeal. It evokes feelings of cleanliness, spaciousness, and tranquility, often associated with clouds, light skies, or fresh snow.

Similar Named Colors

Alice Blue #F0F8FF ΔE 4.16
Columbia Blue #C4D8E2 ΔE 4.81
Pale Aqua #BCD4E6 ΔE 6.23
Munsell #F2F3F4 ΔE 6.59

Code Snippets

/* Background */
.element {
    background-color: #DBE9F4;
}

/* Text */
.element {
    color: #DBE9F4;
}

/* Border */
.element {
    border: 1px solid #DBE9F4;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #DBE9F4,
        #F5F4F3
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #DBE9F4,
        #F5F4F3
    );
}

// SCSS variable
$azureish-white: #DBE9F4;

// With RGB channels (useful for rgba() usage)
$azureish-white-r: 219;
$azureish-white-g: 233;
$azureish-white-b: 244;

// Usage
.element {
    background-color: $azureish-white;
    color: rgba($azureish-white-r, $azureish-white-g, $azureish-white-b, 0.8);
}