Baby Blue

HEX: #89CFF0 | Modern Palette

On White
1.71:1
FAIL
On Black
12.25:1
PASS

Color Specifications

HEX
#89CFF0
RGB
137, 207, 240
HSL
199°, 42% ,94%
CMYK
42.92, 13.75, 0, 5.88

About Baby Blue

Baby Blue (#89CFF0) is a color with RGB(137, 207, 240) and HSL(199.22°, 42.92%, 94.12%). In design, it fits Cool styles and is suitable for Text, Background, Print. Its complementary color is #F0AA89, which creates strong contrast. Its triadic palette includes #F089CF and #CFF089. The name comes from Baby Blue (English).

  • HEX: #89CFF0
  • RGB: 137, 207, 240
  • HSL: 199.22°, 42.92%, 94.12%
  • Style: Cool
  • Use case: Text, Background, Print
  • Complementary color: #F0AA89
  • Triadic colors: #F089CF, #CFF089
  • The name comes from Baby Blue (English).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Baby Blue #89CFF0 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.

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

Baby Blue #89CFF0 pairs with #F0AA89 as its complementary color, and #F089CF and #CFF089 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

BABY BLUE
Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

BABY BLUE
Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

BABY BLUE
Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

BABY BLUE
Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

BABY BLUE
Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

BABY BLUE

Shades & Tints

The shade and tint range for Baby Blue #89CFF0 moves from dark #031017 tones through the base color to lighter #E8F6FC tones, making it useful for depth, hierarchy, and background variation.

BABY BLUE

Color Characteristics

Mood
Style
Cool
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #BEBEF1
Protanopia #C9C9F0
Tritanopia #80D4D4
Achromatopsia #C6C6C6

Frequently Asked Questions

Baby Blue (#89CFF0) is a color with RGB(137, 207, 240) and HSL(199.22°, 42.92%, 94.12%).

#89CFF0 pairs strongly with #F0AA89 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#89CFF0 is suitable for Text, Background, Print and works well with Cool styles.

The name Baby Blue is linked to Baby Blue from English, meaning A light, pale shade of blue, often associated with infancy..

Name, History & Etymology

Origin Word Baby Blue
Meaning A light, pale shade of blue, often associated with infancy.
Language English
First Recorded Use Early 20th Century

History

The association of blue with boys and pink with girls is a relatively modern phenomenon, solidifying in the mid-20th century. Prior to this, there was no strong consensus, and in some cultures or periods, blue was considered more delicate and suitable for girls (often linked to the Virgin Mary's blue robes), while pink, being a 'stronger' version of red, was seen as more masculine. The term 'baby blue' emerged as part of this evolving color symbolism, specifically to denote a very light, gentle blue suitable for infants, and eventually became strongly linked to baby boys.

First Recorded Use

The exact first recorded use of 'baby blue' as a color name is difficult to pinpoint precisely, but its widespread use began in the early 20th century, particularly as gender-specific clothing for infants became more common. Before this, pink and blue were often used interchangeably for babies, or blue was sometimes associated with girls and pink with boys.

Cultural Associations

Baby blue is widely recognized as a color associated with baby boys in Western cultures. It is frequently used for baby clothing, nursery decor, baby shower themes, and toys for male infants. Beyond infancy, it can evoke feelings of calmness, serenity, innocence, and tenderness. It is also sometimes used in contexts related to spring, clear skies, or a gentle, youthful aesthetic.

Similar Named Colors

Pale Cyan #87D3F8 ΔE 1.37
Sky Blue #87CEEB ΔE 1.43
Light Cornflower Blue #93CCEA ΔE 1.91
Cornflower #9ACEEB ΔE 2.73

Code Snippets

/* Background */
.element {
    background-color: #89CFF0;
}

/* Text */
.element {
    color: #89CFF0;
}

/* Border */
.element {
    border: 1px solid #89CFF0;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #89CFF0,
        #F6EEEA
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #89CFF0,
        #F6EEEA
    );
}

// SCSS variable
$baby-blue: #89CFF0;

// With RGB channels (useful for rgba() usage)
$baby-blue-r: 137;
$baby-blue-g: 207;
$baby-blue-b: 240;

// Usage
.element {
    background-color: $baby-blue;
    color: rgba($baby-blue-r, $baby-blue-g, $baby-blue-b, 0.8);
}