Blizzard Blue
HEX: #ACE5EE | Modern Palette
Color Specifications
#ACE5EE
172, 229, 238
188°, 66% ,80%
28, 4, 0, 7
About Blizzard Blue
Blizzard Blue (#ACE5EE) is a color with RGB(172, 229, 238) and HSL(188.2°, 66%, 80.4%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #EEB5AC, which creates strong contrast. Its triadic palette includes #EEACE5 and #E5EEAC. The name comes from Blizzard Blue (English).
- HEX: #ACE5EE
- RGB: 172, 229, 238
- HSL: 188.2°, 66%, 80.4%
- Mood: Playful
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #EEB5AC
- Triadic colors: #EEACE5, #E5EEAC
- The name comes from Blizzard Blue (English).
Live Components
Color Palettes
Blizzard Blue #ACE5EE 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
Blizzard Blue #ACE5EE pairs with #EEB5AC as its complementary color, and #EEACE5 and #E5EEAC in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#D6D6EF
#E0E0EE
#AAE6E6
#DBDBDB
Frequently Asked Questions
Name, History & Etymology
History
The color name 'Blizzard Blue' is primarily recognized as the official corporate color of Blizzard Entertainment, a prominent American video game developer and publisher. The company was founded in 1991. While the color itself (a light, cool blue) existed long before, its specific naming and association with 'Blizzard' became strong due to the company's branding. The hex code #ace5ee is a common representation of this color. The name evokes imagery of snow, ice, and cold, aligning with the 'Blizzard' part of the company's name.
First Recorded Use
The exact first use is difficult to pinpoint, but the term likely gained traction with the rise of digital color palettes and branding, particularly in the context of Blizzard Entertainment's corporate identity.
Cultural Associations
Beyond its direct association with Blizzard Entertainment, the color 'Blizzard Blue' (or similar shades) is culturally linked to winter, cold, ice, and snow. In design, light blues often convey feelings of calmness, serenity, cleanliness, and coolness. For fans of Blizzard Entertainment, the color is instantly recognizable and evokes a sense of nostalgia and connection to their games (e.g., Warcraft, StarCraft, Diablo, Overwatch).
Code Snippets
/* Background */
.element {
background-color: #ACE5EE;
}
/* Text */
.element {
color: #ACE5EE;
}
/* Border */
.element {
border: 1px solid #ACE5EE;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#ACE5EE,
#EEB5AC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#ACE5EE,
#EEB5AC
);
}
// SCSS variable
$blizzard-blue: #ACE5EE;
// With RGB channels (useful for rgba() usage)
$blizzard-blue-r: 172;
$blizzard-blue-g: 229;
$blizzard-blue-b: 238;
// Usage
.element {
background-color: $blizzard-blue;
color: rgba($blizzard-blue-r, $blizzard-blue-g, $blizzard-blue-b, 0.8);
}