Pale Cornflower Blue
HEX: #ABCDEF | Modern Palette
Color Specifications
#ABCDEF
171, 205, 239
210°, 68% ,80%
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
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 #ABCDEF from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#C4C4F0
#CACAEF
#A4D2D2
#C9C9C9
Frequently Asked Questions
Name, History & Etymology
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.
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);
}