Robin's Egg Blue
HEX: #1FCECB | Modern Palette
Color Specifications
#1FCECB
31, 206, 203
178°, 84% ,80%
84.95, 0, 1.46, 19.22
About Robin's Egg Blue
Robin's Egg Blue (#1FCECB) is a color with RGB(31, 206, 203) and HSL(178.97°, 84.95%, 80.78%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #CE1F22, which creates strong contrast. Its triadic palette includes #CB1FCE and #CECB1F. The name comes from Robin's Egg Blue (English).
- HEX: #1FCECB
- RGB: 31, 206, 203
- HSL: 178.97°, 84.95%, 80.78%
- Mood: Playful
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #CE1F22
- Triadic colors: #CB1FCE, #CECB1F
- The name comes from Robin's 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 #1FCECB from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#B1B1CD
#C4C4CB
#22CECE
#B9B9B9
Frequently Asked Questions
Name, History & Etymology
History
The American robin (Turdus migratorius) is known for laying distinctive blue-green eggs. This natural phenomenon provided a vivid and easily recognizable reference for a specific shade of blue. The color gained significant popularity in the early to mid-20th century, often associated with spring, new beginnings, and a certain delicate elegance. It has been widely used in fashion, home decor, ceramics, and even automotive paints. Its appeal lies in its soft yet vibrant quality, often evoking feelings of tranquility and freshness.
First Recorded Use
The term 'robin's egg blue' began to appear in print and common usage in the late 19th century, particularly as color names became more standardized and descriptive in fashion, interior design, and art. While the color itself has always existed, its specific naming and popularization as 'robin's egg blue' solidified around this period.
Cultural Associations
Robin's Egg Blue is strongly associated with the spring season and Easter in Western cultures, due to the robin's nesting habits. It is also famously linked to the luxury jewelry brand Tiffany & Co., which adopted a very similar shade (often referred to as 'Tiffany Blue') for its branding and packaging in the mid-19th century, though the specific 'robin's egg blue' term became more widespread later. This association has imbued the color with connotations of luxury, exclusivity, and celebration. It is often seen as a cheerful and optimistic color.
Code Snippets
/* Background */
.element {
background-color: #1FCECB;
}
/* Text */
.element {
color: #1FCECB;
}
/* Border */
.element {
border: 1px solid #1FCECB;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#1FCECB,
#F8A4A6
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#1FCECB,
#F8A4A6
);
}
// SCSS variable
$robin's-egg-blue: #1FCECB;
// With RGB channels (useful for rgba() usage)
$robin's-egg-blue-r: 31;
$robin's-egg-blue-g: 206;
$robin's-egg-blue-b: 203;
// Usage
.element {
background-color: $robin's-egg-blue;
color: rgba($robin's-egg-blue-r, $robin's-egg-blue-g, $robin's-egg-blue-b, 0.8);
}