Powder Blue
HEX: #B0E0E6 | Modern Palette
Color Specifications
#B0E0E6
176, 224, 230
186°, 51% ,79%
23, 3, 0, 10
About Powder Blue
Powder Blue (#B0E0E6) is a color with RGB(176, 224, 230) and HSL(186.7°, 51.9%, 79.6%). In design, it fits Cool styles and is suitable for Text, Button, Print. Its complementary color is #E6B6B0, which creates strong contrast. Its triadic palette includes #E6B0E0 and #E0E6B0. The name comes from Powder Blue (English).
- HEX: #B0E0E6
- RGB: 176, 224, 230
- HSL: 186.7°, 51.9%, 79.6%
- Style: Cool
- Use case: Text, Button, Print
- Complementary color: #E6B6B0
- Triadic colors: #E6B0E0, #E0E6B0
- The name comes from Powder 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 #B0E0E6 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The concept of 'powder blue' likely emerged from the observation of various light blue powders. One significant influence was 'laundry bluing' powder, a product used to make white fabrics appear whiter by counteracting yellowing with a subtle blue tint. Another possible influence is the color of baby powder. The term gained popularity as color names became more specific and descriptive in fashion and art. By the early to mid-20th century, it was a well-established color term.
First Recorded Use
The term 'powder blue' began to appear in written English in the late 19th century, with early references often linking it to fashion and interior design.
Cultural Associations
Powder blue is often associated with softness, calmness, and innocence. It is a common color for baby clothes and nurseries, particularly for boys, though its use is not exclusive. In fashion, it can evoke a sense of elegance and understated sophistication. It's also frequently seen in home decor to create serene and airy spaces. The color can sometimes be linked to vintage aesthetics due to its popularity in earlier decades.
Code Snippets
/* Background */
.element {
background-color: #B0E0E6;
}
/* Text */
.element {
color: #B0E0E6;
}
/* Border */
.element {
border: 1px solid #B0E0E6;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B0E0E6,
#E6B6B0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B0E0E6,
#E6B6B0
);
}
// SCSS variable
$powder-blue: #B0E0E6;
// With RGB channels (useful for rgba() usage)
$powder-blue-r: 176;
$powder-blue-g: 224;
$powder-blue-b: 230;
// Usage
.element {
background-color: $powder-blue;
color: rgba($powder-blue-r, $powder-blue-g, $powder-blue-b, 0.8);
}