Eton Blue
HEX: #96C8A2 | Modern Palette
Color Specifications
#96C8A2
150, 200, 162
134°, 25% ,78%
25, 0, 19, 21.57
About Eton Blue
Eton Blue (#96C8A2) is a color with RGB(150, 200, 162) and HSL(134.4°, 25%, 78.43%). It is commonly associated with Calm moods. In design, it fits Pastel, Cool styles and is suitable for Text, Background, Border. Its complementary color is #C896BC, which creates strong contrast. Its triadic palette includes #A296C8 and #C8A296. The name comes from Eton Blue (English).
- HEX: #96C8A2
- RGB: 150, 200, 162
- HSL: 134.4°, 25%, 78.43%
- Mood: Calm
- Style: Pastel, Cool
- Use case: Text, Background, Border
- Complementary color: #C896BC
- Triadic colors: #A296C8, #C8A296
- The name comes from Eton Blue (English).
Live Components
Color Palettes
Eton Blue #96C8A2 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
Eton Blue #96C8A2 pairs with #C896BC as its complementary color, and #A296C8 and #C8A296 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
Eton College, a prestigious boarding school in Eton, Berkshire, England, has a long history of using a distinctive shade of blue as one of its official colors. This blue is prominently featured in the school's crest, uniforms (especially ties and blazers), and sports kits. Over time, this specific shade became known colloquially as 'Eton Blue.' While there might be slight variations in its representation across different media and manufacturers, the general hue remains consistent. The hex code #96c8a2 represents one common digital interpretation of this traditional color.
First Recorded Use
The exact first documented use of the term 'Eton Blue' for this specific hex code is difficult to pinpoint precisely, but the color itself has been associated with Eton College since at least the late 19th century, appearing in school colors, ties, and other regalia. The standardization to a specific hex code like #96c8a2 would be a more modern development.
Cultural Associations
Eton Blue is deeply embedded in the culture and identity of Eton College. It symbolizes tradition, prestige, and the institution's long history. For alumni, it evokes a sense of belonging and shared experience. Outside of the school, it is recognized by those familiar with British public school culture. It is often seen in conjunction with other traditional British colors and patterns.
Code Snippets
/* Background */
.element {
background-color: #96C8A2;
}
/* Text */
.element {
color: #96C8A2;
}
/* Border */
.element {
border: 1px solid #96C8A2;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#96C8A2,
#D6BACF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#96C8A2,
#D6BACF
);
}
// SCSS variable
$eton-blue: #96C8A2;
// With RGB channels (useful for rgba() usage)
$eton-blue-r: 150;
$eton-blue-g: 200;
$eton-blue-b: 162;
// Usage
.element {
background-color: $eton-blue;
color: rgba($eton-blue-r, $eton-blue-g, $eton-blue-b, 0.8);
}