Pale Blue

HEX: #AFEEEE | Modern Palette

On White
1.29:1
FAIL
On Black
16.29:1
PASS

Color Specifications

HEX
#AFEEEE
RGB
175, 238, 238
HSL
180°, 64% ,81%
CMYK
26, 0, 0, 7

About Pale Blue

Pale Blue (#AFEEEE) is a color with RGB(175, 238, 238) and HSL(180°, 64.9%, 81%). In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #EEAFAF, which creates strong contrast. Its triadic palette includes #EEAFEE and #EEEEAF. The name comes from Pale Blue (English).

  • HEX: #AFEEEE
  • RGB: 175, 238, 238
  • HSL: 180°, 64.9%, 81%
  • Style: Cool
  • Use case: Text, Button, Background
  • Complementary color: #EEAFAF
  • Triadic colors: #EEAFEE, #EEEEAF
  • The name comes from Pale 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 #AFEEEE from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Cool

Accessibility Simulation

Deuteranopia #DEDEEF
Protanopia #E8E8EE
Tritanopia #AFEEEE
Achromatopsia #E3E3E3

Frequently Asked Questions

Pale Blue (#AFEEEE) is a color with RGB(175, 238, 238) and HSL(180°, 64.9%, 81%).

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

#AFEEEE is suitable for Text, Button, Background and works well with Cool styles.

The name Pale Blue is linked to Pale Blue from English, meaning A light, desaturated shade of blue..

Name, History & Etymology

Origin Word Pale Blue
Meaning A light, desaturated shade of blue.
Language English
First Recorded Use Late 17th - Early 18th Century (as a general color description)

History

The term 'pale blue' is a descriptive compound of two older English words. 'Pale' comes from Old French 'pale' (meaning 'pale, wan, faint'), ultimately from Latin 'pallidus'. 'Blue' comes from Old French 'bleu' (meaning 'blue, blue-gray'), from Frankish '*blao' or Old High German 'blao'. The combination 'pale blue' simply describes a less intense or lighter version of the color blue. Its usage has been consistent in English to denote this specific shade. In digital contexts, '#afeeee' is a specific hexadecimal representation of a pale blue, often referred to as 'PaleTurquoise' in some web color standards, though 'Pale Blue' is a more general term.

First Recorded Use

While 'pale' and 'blue' have existed for centuries, the specific compound 'pale blue' as a common color descriptor likely solidified in usage during the late 17th to early 18th century, as color terminology became more refined in literature and art. Earlier uses would be more descriptive phrases rather than a fixed term.

Cultural Associations

Pale blue is often associated with calmness, serenity, and peace. It can evoke images of clear skies, tranquil waters, or delicate flowers. In some cultures, light blue shades are linked to purity, innocence, and new beginnings. It's a common color for baby boys in Western cultures, though this association is relatively modern. It's also frequently used in interior design to create a relaxing atmosphere and in fashion for its soothing aesthetic.

Similar Named Colors

Waterspout #A4F4F9 ΔE 2.96
Celeste #B2FFFF ΔE 3.80
Blizzard Blue #ACE5EE ΔE 4.38
Powder Blue #B0E0E6 ΔE 4.92

Code Snippets

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

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

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

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

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

// SCSS variable
$pale-blue: #AFEEEE;

// With RGB channels (useful for rgba() usage)
$pale-blue-r: 175;
$pale-blue-g: 238;
$pale-blue-b: 238;

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