Pale Cornflower Blue

HEX: #ABCDEF | Modern Palette

On White
1.65:1
FAIL
On Black
12.71:1
PASS

Color Specifications

HEX
#ABCDEF
RGB
171, 205, 239
HSL
210°, 68% ,80%
CMYK
28, 14, 0, 6

About Pale Cornflower Blue

Pale Cornflower Blue (#ABCDEF) is a color with RGB(171, 205, 239) and HSL(210°, 68%, 80.4%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #EFCDAB, which creates strong contrast. Its triadic palette includes #EFABCD and #CDEFAB. The name comes from Pale Cornflower Blue (English).

  • HEX: #ABCDEF
  • RGB: 171, 205, 239
  • HSL: 210°, 68%, 80.4%
  • Mood: Playful
  • Style: Cool
  • Use case: Text, Button, Background
  • Complementary color: #EFCDAB
  • Triadic colors: #EFABCD, #CDEFAB
  • The name comes from Pale Cornflower 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 #ABCDEF from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Cool

Accessibility Simulation

Deuteranopia #C4C4F0
Protanopia #CACAEF
Tritanopia #A4D2D2
Achromatopsia #C9C9C9

Frequently Asked Questions

Pale Cornflower Blue (#ABCDEF) is a color with RGB(171, 205, 239) and HSL(210°, 68%, 80.4%).

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

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

#ABCDEF is commonly associated with Playful.

The name Pale Cornflower Blue is linked to Pale Cornflower Blue from English, meaning A light, desaturated shade of blue, reminiscent of the cornflower (Centaurea cyanus) but lighter..

Name, History & Etymology

Origin Word Pale Cornflower Blue
Meaning A light, desaturated shade of blue, reminiscent of the cornflower (Centaurea cyanus) but lighter.
Language English
First Recorded Use Late 19th - Early 20th Century

History

The color 'cornflower blue' itself is named after the common cornflower, a plant native to Europe. The flower is known for its vibrant, clear blue petals. As color science and naming evolved, particularly with the advent of synthetic dyes and more precise color matching, variations like 'pale' or 'deep' were added to distinguish different intensities of a base color. 'Pale Cornflower Blue' specifically refers to a lighter, often softer, version of the classic cornflower blue. It's a common color in various color systems and palettes.

First Recorded Use

The term 'cornflower blue' for a specific shade of blue became popular in the late 19th century. The addition of 'pale' would naturally follow as a descriptor for lighter variations. Specific first use of the exact phrase 'Pale Cornflower Blue' is difficult to pinpoint but would fall within the period when color naming became more standardized and nuanced, particularly in art, fashion, and interior design.

Cultural Associations

Cornflower blue, in general, is often associated with nature, tranquility, and a certain rustic charm due to its floral origin. The 'pale' variation might evoke feelings of serenity, softness, and a delicate elegance. It's a popular color in spring and summer fashion, home decor for a light and airy feel, and sometimes in art to depict skies or water. It can also be seen as a more subdued and sophisticated alternative to brighter blues.

Similar Named Colors

Baby Blue Eyes #A1CAF1 ΔE 1.92
Pale Cerulean #9BC4E2 ΔE 3.82
Light Steel Blue #B0C4DE ΔE 4.29
Carolina Blue #99BADD ΔE 4.86

Code Snippets

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

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

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

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

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

// SCSS variable
$pale-cornflower-blue: #ABCDEF;

// With RGB channels (useful for rgba() usage)
$pale-cornflower-blue-r: 171;
$pale-cornflower-blue-g: 205;
$pale-cornflower-blue-b: 239;

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