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
Azureish White #DBE9F4 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Azureish White #DBE9F4 pairs with #F4E6DB as its complementary color, and #F4DBE9 and #E9F4DB in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}