Light Sky Blue
HEX: #87CEFA | Modern Palette
Color Specifications
#87CEFA
135, 206, 250
202°, 46% ,98%
46, 17.6, 0, 1.96
About Light Sky Blue
Light Sky Blue (#87CEFA) is a color with RGB(135, 206, 250) and HSL(202.96°, 46%, 98.04%). In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #FAB387, which creates strong contrast. Its triadic palette includes #FA87CE and #CEFA87. The name comes from Light Sky Blue (English).
- HEX: #87CEFA
- RGB: 135, 206, 250
- HSL: 202.96°, 46%, 98.04%
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #FAB387
- Triadic colors: #FA87CE, #CEFA87
- The name comes from Light Sky Blue (English).
Live Components
Color Palettes
Light Sky Blue #87CEFA 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
Light Sky Blue #87CEFA pairs with #FAB387 as its complementary color, and #FA87CE and #CEFA87 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#BDBDFB
#C8C8FA
#7BD4D4
#C6C6C6
Frequently Asked Questions
Name, History & Etymology
History
The concept of 'sky blue' as a color has existed for centuries, referring to the color of the daytime sky. The addition of 'light' specifies a paler variant. As a specific, named color, 'Light Sky Blue' gained prominence with the development of standardized color systems, particularly in the digital age. The hexadecimal code #87cefa is part of the X11 color names, which were widely adopted for web colors, making it a recognized standard for this particular shade.
First Recorded Use
While descriptive phrases like 'light sky blue' would have been used whenever people described the sky, its formalization as a specific color name with a defined hue likely emerged as color naming became more systematic. The X11 color name 'LightSkyBlue' and its associated hexadecimal value (#87cefa) were standardized much later with the advent of computer graphics and web colors.
Cultural Associations
Light blue shades, including 'Light Sky Blue', are often associated with tranquility, peace, openness, and freshness. They can evoke feelings of calmness and serenity, similar to looking at a clear sky. In fashion and interior design, it's often used to create a light, airy, and spacious feel. It's a popular color for baby clothes, particularly for boys, though this association is more cultural than inherent.
Code Snippets
/* Background */
.element {
background-color: #87CEFA;
}
/* Text */
.element {
color: #87CEFA;
}
/* Border */
.element {
border: 1px solid #87CEFA;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#87CEFA,
#FCF9F8
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#87CEFA,
#FCF9F8
);
}
// SCSS variable
$light-sky-blue: #87CEFA;
// With RGB channels (useful for rgba() usage)
$light-sky-blue-r: 135;
$light-sky-blue-g: 206;
$light-sky-blue-b: 250;
// Usage
.element {
background-color: $light-sky-blue;
color: rgba($light-sky-blue-r, $light-sky-blue-g, $light-sky-blue-b, 0.8);
}