Baby Blue
HEX: #89CFF0 | Modern Palette
Color Specifications
#89CFF0
137, 207, 240
199°, 42% ,94%
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
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.
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.
Color Characteristics
Accessibility Simulation
#BEBEF1
#C9C9F0
#80D4D4
#C6C6C6
Frequently Asked Questions
Name, History & Etymology
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.
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);
}