Azureish White
HEX: #DBE9F4 | Modern Palette
Color Specifications
#DBE9F4
219, 233, 244
206°, 10% ,95%
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
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 #DBE9F4 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}