Light Blue
HEX: #ADD8E6 | Modern Palette
Color Specifications
#ADD8E6
173, 216, 230
194°, 53% ,79%
25, 6, 0, 10
About Light Blue
Light Blue (#ADD8E6) is a color with RGB(173, 216, 230) and HSL(194.7°, 53.3%, 79%). In design, it fits Cool styles and is suitable for Text, Button, Print. Its complementary color is #E6BBAD, which creates strong contrast. Its triadic palette includes #E6ADD8 and #D8E6AD. The name comes from Light Blue (English).
- HEX: #ADD8E6
- RGB: 173, 216, 230
- HSL: 194.7°, 53.3%, 79%
- Style: Cool
- Use case: Text, Button, Print
- Complementary color: #E6BBAD
- Triadic colors: #E6ADD8, #D8E6AD
- The name comes from Light Blue (English).
Live Components
Color Palettes
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 #ADD8E6 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'blue' itself comes from Old French 'bleu', which has Germanic roots. The concept of 'light blue' as a distinct shade has been recognized throughout history, often associated with the sky, water, and certain minerals. Before standardized color names, people would describe it with comparisons (e.g., 'sky blue', 'water blue'). The development of dyes and pigments allowed for more precise reproduction and naming of specific shades. In art, 'light blue' pigments like cerulean blue or cobalt blue became more widely available and used from the 18th and 19th centuries, further solidifying the term. In fashion and design, 'light blue' has seen various periods of popularity, often associated with calmness, freshness, and youth.
First Recorded Use
While 'blue' has ancient roots, the specific compound 'light blue' as a common color descriptor likely solidified in usage as color vocabulary became more nuanced. Direct evidence for its 'first use' as a fixed term is difficult to pinpoint precisely, but descriptive phrases like 'light blue' would have been used as soon as the concept of varying shades of blue was recognized. The term 'light blue' as a distinct color name became more common from the 17th century onwards with increased standardization of color terminology.
Cultural Associations
Light blue is widely associated with peace, tranquility, and serenity across many cultures. It often symbolizes the sky and sea, evoking feelings of openness and freedom. In Western cultures, it's frequently used for baby boys' clothing and nurseries, though this is a relatively modern convention (pink for girls and blue for boys only became dominant in the mid-20th century). It's also a common color for uniforms (e.g., medical scrubs, police shirts in some regions) due to its calming and clean connotations. In some spiritual contexts, light blue can represent healing and protection. It's also a popular color in corporate branding to convey trustworthiness and reliability.
Code Snippets
/* Background */
.element {
background-color: #ADD8E6;
}
/* Text */
.element {
color: #ADD8E6;
}
/* Border */
.element {
border: 1px solid #ADD8E6;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#ADD8E6,
#E6BBAD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#ADD8E6,
#E6BBAD
);
}
// SCSS variable
$light-blue: #ADD8E6;
// With RGB channels (useful for rgba() usage)
$light-blue-r: 173;
$light-blue-g: 216;
$light-blue-b: 230;
// Usage
.element {
background-color: $light-blue;
color: rgba($light-blue-r, $light-blue-g, $light-blue-b, 0.8);
}