Pale Blue
HEX: #AFEEEE | Modern Palette
Color Specifications
#AFEEEE
175, 238, 238
180°, 64% ,81%
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
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 #AFEEEE from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#DEDEEF
#E8E8EE
#AFEEEE
#E3E3E3
Frequently Asked Questions
Name, History & Etymology
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.
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);
}