Azure Mist/web
HEX: #F0FFFF | Modern Palette
Color Specifications
#F0FFFF
240, 255, 255
180°, 100% ,97%
6, 0, 0, 0
About Azure Mist/web
Azure Mist/web (#F0FFFF) is a color with RGB(240, 255, 255) and HSL(180°, 100%, 97.1%). It is commonly associated with Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Background. Its complementary color is #FFF0F0, which creates strong contrast. Its triadic palette includes #FFF0FF and Ivory (#FFFFF0). The name comes from Azure Mist (English).
- HEX: #F0FFFF
- RGB: 240, 255, 255
- HSL: 180°, 100%, 97.1%
- Mood: Playful
- Style: Neon, Cool
- Use case: Text, Button, Background
- Complementary color: #FFF0F0
- Triadic colors: #FFF0FF, Ivory (#FFFFF0)
- The name comes from Azure Mist (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 #F0FFFF from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The term 'Azure' has ancient roots, referring to the blue sky, derived from Persian 'lazward' (lapis lazuli). 'Mist' refers to a cloud of tiny water droplets. The combination 'Azure Mist' is a descriptive compound, likely coined in the context of digital color naming to evoke a specific, soft, and ethereal shade of blue. Its hexadecimal code #F0FFFF is very close to pure white (#FFFFFF), indicating a highly desaturated, extremely pale blue, almost indistinguishable from white in some contexts. It's often categorized as a web color or a named color in various digital design tools.
First Recorded Use
Likely emerged with the proliferation of web colors, digital design, and named color palettes.
Cultural Associations
Colors with 'mist' or 'haze' in their names often evoke feelings of tranquility, softness, and subtlety. 'Azure Mist' specifically suggests a serene, open, and perhaps slightly mysterious atmosphere, similar to a clear sky seen through a light fog. It's a popular choice in design for backgrounds, subtle accents, and themes aiming for a clean, airy, or minimalist aesthetic.
Code Snippets
/* Background */
.element {
background-color: #F0FFFF;
}
/* Text */
.element {
color: #F0FFFF;
}
/* Border */
.element {
border: 1px solid #F0FFFF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F0FFFF,
#FFF0F0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F0FFFF,
#FFF0F0
);
}
// SCSS variable
$azure-mist/web: #F0FFFF;
// With RGB channels (useful for rgba() usage)
$azure-mist/web-r: 240;
$azure-mist/web-g: 255;
$azure-mist/web-b: 255;
// Usage
.element {
background-color: $azure-mist/web;
color: rgba($azure-mist/web-r, $azure-mist/web-g, $azure-mist/web-b, 0.8);
}