Bondi Blue
HEX: #0095B6 | Modern Palette
Color Specifications
#0095B6
0, 149, 182
190°, 100% ,71%
100, 18.13, 0, 28.63
About Bondi Blue
Bondi Blue (#0095B6) is a color with RGB(0, 149, 182) and HSL(190.88°, 100%, 71.37%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Cool styles and is suitable for Text, Button, Accent. Its complementary color is #B62100, which creates strong contrast. Its triadic palette includes #B60095 and #95B600. The name comes from Bondi Blue (English).
- HEX: #0095B6
- RGB: 0, 149, 182
- HSL: 190.88°, 100%, 71.37%
- Mood: Bold, Playful
- Style: Neon, Cool
- Use case: Text, Button, Accent
- Complementary color: #B62100
- Triadic colors: #B60095, #95B600
- The name comes from Bondi Blue (English).
Live Components
Color Palettes
Bondi Blue #0095B6 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
Bondi Blue #0095B6 pairs with #B62100 as its complementary color, and #B60095 and #95B600 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 color 'Bondi Blue' gained significant prominence and its name through its use as the translucent casing color for the original Apple iMac G3, released in August 1998. Apple's design team, led by Jony Ive, chose this vibrant, somewhat greenish-blue to differentiate the iMac from the beige and grey computers prevalent at the time. The name 'Bondi Blue' was inspired by the distinctive blue waters of Bondi Beach in Sydney, Australia, and quickly became a popular descriptor for the color, both officially and colloquially.
First Recorded Use
1998
Cultural Associations
Bondi Blue is strongly associated with the late 1990s and the resurgence of Apple Inc. It symbolized a shift in computer design towards more consumer-friendly, aesthetically pleasing, and colorful products. Its introduction marked a significant moment in industrial design, moving away from purely functional aesthetics to incorporating elements of fun and personality. The color became iconic for the iMac G3 and is still recognized today as a hallmark of that era of technology and design.
Code Snippets
/* Background */
.element {
background-color: #0095B6;
}
/* Text */
.element {
color: #0095B6;
}
/* Border */
.element {
border: 1px solid #0095B6;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#0095B6,
#FF876D
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#0095B6,
#FF876D
);
}
// SCSS variable
$bondi-blue: #0095B6;
// With RGB channels (useful for rgba() usage)
$bondi-blue-r: 0;
$bondi-blue-g: 149;
$bondi-blue-b: 182;
// Usage
.element {
background-color: $bondi-blue;
color: rgba($bondi-blue-r, $bondi-blue-g, $bondi-blue-b, 0.8);
}