Light Blue

HEX: #ADD8E6 | Modern Palette

On White
1.53:1
FAIL
On Black
13.74:1
PASS

Color Specifications

HEX
#ADD8E6
RGB
173, 216, 230
HSL
194°, 53% ,79%
CMYK
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

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

Color Characteristics

Mood
Style
Cool
Use case
Text Button Print

Accessibility Simulation

Deuteranopia #CDCDE7
Protanopia #D4D4E6
Tritanopia #AADADA
Achromatopsia #D1D1D1

Frequently Asked Questions

Light Blue (#ADD8E6) is a color with RGB(173, 216, 230) and HSL(194.7°, 53.3%, 79%).

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

#ADD8E6 is suitable for Text, Button, Print and works well with Cool styles.

The name Light Blue is linked to Light Blue from English, meaning A pale shade of blue, resembling the color of the sky on a clear day or shallow water..

Name, History & Etymology

Origin Word Light Blue
Meaning A pale shade of blue, resembling the color of the sky on a clear day or shallow water.
Language English
First Recorded Use Late Middle English / Early Modern English (as a descriptive phrase)

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.

Similar Named Colors

Non-photo Blue #A4DDED ΔE 2.83
Powder Blue #B0E0E6 ΔE 4.27
Blizzard Blue #ACE5EE ΔE 4.91
Fresh Air #A6E7FF ΔE 5.08

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);
}