Robin Egg Blue
HEX: #00CCCC | Modern Palette
Color Specifications
#00CCCC
0, 204, 204
180°, 100% ,80%
100, 0, 0, 20
About Robin Egg Blue
Robin Egg Blue (#00CCCC) is a color with RGB(0, 204, 204) and HSL(180°, 100%, 80%). 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 Boston University Red (#CC0000), which creates strong contrast. Its triadic palette includes Deep Magenta (#CC00CC) and #CCCC00. The name comes from Robin Egg Blue (English).
- HEX: #00CCCC
- RGB: 0, 204, 204
- HSL: 180°, 100%, 80%
- Mood: Playful
- Style: Neon, Cool
- Use case: Text, Button, Background
- Complementary color: Boston University Red (#CC0000)
- Triadic colors: Deep Magenta (#CC00CC), #CCCC00
- The name comes from Robin Egg 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 #00CCCC from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The American Robin (Turdus migratorius) is a common and widely recognized bird in North America. Its eggs are distinctively colored, a shade of blue-green that is often described as 'robin's egg blue.' This natural phenomenon provided a readily understandable and evocative name for a specific color. The color became particularly popular in fashion, interior design, and ceramics during the early to mid-20th century, often associated with spring, freshness, and a certain delicate charm. Its use has persisted, becoming a classic and easily identifiable color.
First Recorded Use
The exact first recorded use as a specific color name is difficult to pinpoint precisely, but it gained popularity as a descriptive color term in the late 19th century, coinciding with increased interest in natural history and standardized color naming.
Cultural Associations
Robin Egg Blue is strongly associated with spring, new beginnings, and nature. It is often used in contexts related to children, nurseries, and weddings, symbolizing innocence and hope. In some cultures, blue is associated with tranquility and protection. The color is also famously associated with the luxury jewelry brand Tiffany & Co., which uses a very similar shade (often referred to as 'Tiffany Blue') for its branding and packaging, further cementing its image as elegant and desirable.
Code Snippets
/* Background */
.element {
background-color: #00CCCC;
}
/* Text */
.element {
color: #00CCCC;
}
/* Border */
.element {
border: 1px solid #00CCCC;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#00CCCC,
#FF9999
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#00CCCC,
#FF9999
);
}
// SCSS variable
$robin-egg-blue: #00CCCC;
// With RGB channels (useful for rgba() usage)
$robin-egg-blue-r: 0;
$robin-egg-blue-g: 204;
$robin-egg-blue-b: 204;
// Usage
.element {
background-color: $robin-egg-blue;
color: rgba($robin-egg-blue-r, $robin-egg-blue-g, $robin-egg-blue-b, 0.8);
}