Pale Aqua

HEX: #BCD4E6 | Modern Palette

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

Color Specifications

HEX
#BCD4E6
RGB
188, 212, 230
HSL
205°, 45% ,82%
CMYK
18, 8, 0, 10

About Pale Aqua

Pale Aqua (#BCD4E6) is a color with RGB(188, 212, 230) and HSL(205.7°, 45.7%, 82%). In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #E6CEBC, which creates strong contrast. Its triadic palette includes #E6BCD4 and #D4E6BC. The name comes from Pale Aqua (English).

  • HEX: #BCD4E6
  • RGB: 188, 212, 230
  • HSL: 205.7°, 45.7%, 82%
  • Style: Cool
  • Use case: Text, Button, Background
  • Complementary color: #E6CEBC
  • Triadic colors: #E6BCD4, #D4E6BC
  • The name comes from Pale Aqua (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 #BCD4E6 from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Cool

Accessibility Simulation

Deuteranopia #CDCDE6
Protanopia #D2D2E6
Tritanopia #B9D6D6
Achromatopsia #D1D1D1

Frequently Asked Questions

Pale Aqua (#BCD4E6) is a color with RGB(188, 212, 230) and HSL(205.7°, 45.7%, 82%).

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

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

The name Pale Aqua is linked to Pale Aqua from English, meaning A light, desaturated shade of blue-green, reminiscent of water..

Name, History & Etymology

Origin Word Pale Aqua
Meaning A light, desaturated shade of blue-green, reminiscent of water.
Language English
First Recorded Use Late 20th Century

History

The term 'aqua' itself comes from Latin, meaning 'water'. It has been used to describe a blue-green color for centuries. However, the need for more specific color descriptors, especially with the advent of computer graphics and web standards, led to the creation of terms like 'Pale Aqua'. It's a descriptive name, combining a lightness modifier ('pale') with the base color ('aqua'). It's often found in color palettes for web design, interior design, and fashion, where precise shades are important.

First Recorded Use

The specific color name 'Pale Aqua' likely emerged with the proliferation of digital color systems and web design in the late 20th century (1980s-1990s). While 'aqua' has older roots, the 'pale' modifier for precise digital specification is more recent.

Cultural Associations

Pale Aqua is often associated with tranquility, freshness, and cleanliness. It evokes images of clear, shallow water, serene beaches, or a light, airy atmosphere. In design, it's frequently used to create a calming or minimalist aesthetic. It can be seen in spas, bathrooms, and modern living spaces. It's a popular choice for brands aiming for a gentle, approachable, or eco-friendly image.

Similar Named Colors

Columbia Blue #C4D8E2 ΔE 3.31
Pastel Blue #AEC6CF ΔE 5.37
Pale Cornflower Blue #ABCDEF ΔE 5.46
Light Steel Blue #B0C4DE ΔE 5.53

Code Snippets

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

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

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

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

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

// SCSS variable
$pale-aqua: #BCD4E6;

// With RGB channels (useful for rgba() usage)
$pale-aqua-r: 188;
$pale-aqua-g: 212;
$pale-aqua-b: 230;

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