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
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 #ACE5EE from deepest shade to lightest tint.
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);
}