Robin's Egg Blue

HEX: #1FCECB | Modern Palette

On White
1.95:1
FAIL
On Black
10.75:1
PASS

Color Specifications

HEX
#1FCECB
RGB
31, 206, 203
HSL
178°, 84% ,80%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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

Mood
Playful
Style
Cool

Accessibility Simulation

Deuteranopia #B1B1CD
Protanopia #C4C4CB
Tritanopia #22CECE
Achromatopsia #B9B9B9

Frequently Asked Questions

Robin's Egg Blue (#1FCECB) is a color with RGB(31, 206, 203) and HSL(178.97°, 84.95%, 80.78%).

#1FCECB pairs strongly with #CE1F22 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#1FCECB is suitable for Text, Button, Background and works well with Cool styles.

#1FCECB is commonly associated with Playful.

The name Robin's Egg Blue is linked to Robin's Egg Blue from English, meaning A color resembling the pale blue-green shell of an American robin's egg..

Name, History & Etymology

Origin Word Robin's Egg Blue
Meaning A color resembling the pale blue-green shell of an American robin's egg.
Language English
First Recorded Use Late 19th Century

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.

Similar Named Colors

Robin Egg Blue #00CCCC ΔE 1.16
Medium Turquoise #48D1CC ΔE 1.86
Dark Turquoise #00CED1 ΔE 2.03
Turquoise #30D5C8 ΔE 3.72

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);
}