Light Steel Blue

HEX: #B0C4DE | Modern Palette

On White
1.78:1
FAIL
On Black
11.80:1
PASS

Color Specifications

HEX
#B0C4DE
RGB
176, 196, 222
HSL
213°, 20% ,87%
CMYK
20.72, 11.71, 0, 12.94

About Light Steel Blue

Light Steel Blue (#B0C4DE) is a color with RGB(176, 196, 222) and HSL(213.91°, 20.72%, 87.06%). In design, it fits Pastel, Cool styles and is suitable for Text, Background, Print. Its complementary color is #DECAB0, which creates strong contrast. Its triadic palette includes #DEB0C4 and #C4DEB0. The name comes from Light Steel Blue (English).

  • HEX: #B0C4DE
  • RGB: 176, 196, 222
  • HSL: 213.91°, 20.72%, 87.06%
  • Style: Pastel, Cool
  • Use case: Text, Background, Print
  • Complementary color: #DECAB0
  • Triadic colors: #DEB0C4, #C4DEB0
  • The name comes from Light Steel Blue (English).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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 #B0C4DE from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Pastel Cool
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #BEBEDE
Protanopia #C2C2DE
Tritanopia #ACC8C8
Achromatopsia #C2C2C2

Frequently Asked Questions

Light Steel Blue (#B0C4DE) is a color with RGB(176, 196, 222) and HSL(213.91°, 20.72%, 87.06%).

#B0C4DE pairs strongly with #DECAB0 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#B0C4DE is suitable for Text, Background, Print and works well with Pastel, Cool styles.

The name Light Steel Blue is linked to Light Steel Blue from English, meaning A light shade of blue, reminiscent of steel that has been blued (a passivation process that creates a blue-black finish on steel) but in a much lighter, more pastel tone..

Name, History & Etymology

Origin Word Light Steel Blue
Meaning A light shade of blue, reminiscent of steel that has been blued (a passivation process that creates a blue-black finish on steel) but in a much lighter, more pastel tone.
Language English
First Recorded Use Late 19th to Early 20th Century (as a named color)

History

The concept of 'steel blue' as a color has roots in the appearance of blued steel, a process used for corrosion resistance and aesthetics on firearms and other metal objects. This finish often has a dark, grayish-blue hue. As color palettes expanded, lighter and more desaturated variations were identified and named. 'Light Steel Blue' represents a softer, more ethereal interpretation of this industrial inspiration, moving into the realm of pastels. Its inclusion in standard color lists, such as the X11 color names (which influenced web colors), solidified its recognition and usage in digital and design contexts.

First Recorded Use

The specific color name "Light Steel Blue" likely emerged as color standardization became more common in industries like paint, textiles, and art supplies. While 'steel blue' existed earlier, the 'light' modifier for this specific pastel shade became more formalized around this period. It was officially recognized in web colors (X11 color names) in the late 20th century.

Cultural Associations

Light Steel Blue is often associated with calmness, serenity, and a sense of lightness. It can evoke images of clear skies, winter mornings, or a subtle, sophisticated elegance. Due to its pastel nature, it's frequently used in interior design for bedrooms and bathrooms to create a relaxing atmosphere, in fashion for spring and summer collections, and in branding for companies aiming for a clean, trustworthy, or gentle image. It's a less intense alternative to more vibrant blues, offering a sense of understated grace.

Similar Named Colors

Pale Cornflower Blue #ABCDEF ΔE 4.29
Carolina Blue #99BADD ΔE 4.85
Pale Aqua #BCD4E6 ΔE 5.53
Baby Blue Eyes #A1CAF1 ΔE 5.64

Code Snippets

/* Background */
.element {
    background-color: #B0C4DE;
}

/* Text */
.element {
    color: #B0C4DE;
}

/* Border */
.element {
    border: 1px solid #B0C4DE;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #B0C4DE,
        #E5DFD7
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #B0C4DE,
        #E5DFD7
    );
}

// SCSS variable
$light-steel-blue: #B0C4DE;

// With RGB channels (useful for rgba() usage)
$light-steel-blue-r: 176;
$light-steel-blue-g: 196;
$light-steel-blue-b: 222;

// Usage
.element {
    background-color: $light-steel-blue;
    color: rgba($light-steel-blue-r, $light-steel-blue-g, $light-steel-blue-b, 0.8);
}