Pastel Blue
HEX: #AEC6CF | Modern Palette
Color Specifications
#AEC6CF
174, 198, 207
196°, 25% ,74%
16, 4, 0, 19
About Pastel Blue
Pastel Blue (#AEC6CF) is a color with RGB(174, 198, 207) and HSL(196.4°, 25.6%, 74.7%). It is commonly associated with Calm moods. In design, it fits Pastel, Cool styles and is suitable for Text, Border, Print. Its complementary color is #CFB7AE, which creates strong contrast. Its triadic palette includes #CFAEC6 and #C6CFAE. The name comes from Pastel Blue (English).
- HEX: #AEC6CF
- RGB: 174, 198, 207
- HSL: 196.4°, 25.6%, 74.7%
- Mood: Calm
- Style: Pastel, Cool
- Use case: Text, Border, Print
- Complementary color: #CFB7AE
- Triadic colors: #CFAEC6, #C6CFAE
- The name comes from Pastel 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 #AEC6CF from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The concept of 'pastel' colors emerged from the art medium of pastels, which by their nature produce soft, muted tones due to the pigment being mixed with a binder and often chalk. As these art forms gained popularity, the descriptive term 'pastel' extended to a broader range of colors in other mediums that shared this characteristic softness and low saturation. 'Pastel Blue' specifically refers to a light, desaturated blue, often associated with tranquility, innocence, and softness. Its use has been prominent in various eras, particularly in periods favoring softer aesthetics, such as the Rococo period (though the term 'pastel blue' itself is more modern), and again in the mid-20th century for interior design and fashion.
First Recorded Use
The term 'pastel' to describe a range of soft colors became more common with the rise of pastel art mediums and their associated color palettes. 'Pastel Blue' as a specific color name likely solidified in common usage during the late 19th or early 20th century as color naming became more standardized in fashion, interior design, and art supplies.
Cultural Associations
Often associated with baby items, particularly for boys, though its use is much broader. Evokes feelings of calmness, peace, and serenity. Popular in spring and summer fashion palettes. Frequently used in interior design for bedrooms and bathrooms to create a relaxing atmosphere. Can be linked to vintage aesthetics, especially from the mid-20th century. In some contexts, it can represent innocence or dreaminess.
Code Snippets
/* Background */
.element {
background-color: #AEC6CF;
}
/* Text */
.element {
color: #AEC6CF;
}
/* Border */
.element {
border: 1px solid #AEC6CF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#AEC6CF,
#CFB7AE
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#AEC6CF,
#CFB7AE
);
}
// SCSS variable
$pastel-blue: #AEC6CF;
// With RGB channels (useful for rgba() usage)
$pastel-blue-r: 174;
$pastel-blue-g: 198;
$pastel-blue-b: 207;
// Usage
.element {
background-color: $pastel-blue;
color: rgba($pastel-blue-r, $pastel-blue-g, $pastel-blue-b, 0.8);
}