Sky Blue
HEX: #87CEEB | Modern Palette
Color Specifications
#87CEEB
135, 206, 235
197°, 42% ,92%
42.55, 12.34, 0, 7.84
About Sky Blue
Sky Blue (#87CEEB) is a color with RGB(135, 206, 235) and HSL(197.4°, 42.55%, 92.16%). In design, it fits Cool styles and is suitable for Text, Background, Print. Its complementary color is #EBA487, which creates strong contrast. Its triadic palette includes #EB87CE and #CEEB87. The name comes from Sky Blue (English).
- HEX: #87CEEB
- RGB: 135, 206, 235
- HSL: 197.4°, 42.55%, 92.16%
- Style: Cool
- Use case: Text, Background, Print
- Complementary color: #EBA487
- Triadic colors: #EB87CE, #CEEB87
- The name comes from Sky Blue (English).
Live Components
Color Palettes
Sky Blue #87CEEB 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
Sky Blue #87CEEB pairs with #EBA487 as its complementary color, and #EB87CE and #CEEB87 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#BDBDEC
#C8C8EB
#7FD2D2
#C4C4C4
Frequently Asked Questions
Name, History & Etymology
History
The concept of 'blue' as a distinct color has a long history, with various shades being named over time. 'Sky blue' specifically refers to the light, often bright, blue seen in the Earth's atmosphere. Its use as a specific color descriptor became more common as color terminology became more precise. The hex code #87ceeb is a modern digital representation of a particular shade of sky blue.
First Recorded Use
The term 'sky blue' as a color name is recorded from the late 17th century. Earlier references to 'sky colour' or 'sky-coloured' exist, but 'sky blue' became standardized later.
Cultural Associations
Sky blue is widely associated with calmness, serenity, peace, and openness. It is often used in contexts related to nature, the outdoors, and the divine. In many cultures, blue is seen as a positive color. It can also symbolize freedom and inspiration. It's a popular color in fashion, interior design, and art for its soothing qualities.
Code Snippets
/* Background */
.element {
background-color: #87CEEB;
}
/* Text */
.element {
color: #87CEEB;
}
/* Border */
.element {
border: 1px solid #87CEEB;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#87CEEB,
#F4E7E3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#87CEEB,
#F4E7E3
);
}
// SCSS variable
$sky-blue: #87CEEB;
// With RGB channels (useful for rgba() usage)
$sky-blue-r: 135;
$sky-blue-g: 206;
$sky-blue-b: 235;
// Usage
.element {
background-color: $sky-blue;
color: rgba($sky-blue-r, $sky-blue-g, $sky-blue-b, 0.8);
}