Pastel Pink
HEX: #DEA5A4 | Modern Palette
Color Specifications
#DEA5A4
222, 165, 164
1°, 26% ,87%
0, 25.68, 26.13, 12.94
About Pastel Pink
Pastel Pink (#DEA5A4) is a color with RGB(222, 165, 164) and HSL(1.03°, 26.13%, 87.06%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #A4DDDE, which creates strong contrast. Its triadic palette includes #A4DEA5 and #A5A4DE.
- HEX: #DEA5A4
- RGB: 222, 165, 164
- HSL: 1.03°, 26.13%, 87.06%
- Style: Pastel, Warm
- Use case: Text, Background, Print
- Complementary color: #A4DDDE
- Triadic colors: #A4DEA5, #A5A4DE
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 #DEA5A4 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#B8B8A2
#ACACA4
#DEA5A5
#B3B3B3
Frequently Asked Questions
Name, History & Etymology
History
The color pink itself has a long history, appearing in art and nature for centuries. However, its association with specific meanings has evolved. In the 18th century, pink was a fashionable color for both men and women among the aristocracy. It was seen as a strong, vibrant color. The specific shade 'Pastel Pink' refers to a lighter, desaturated version of pink, often associated with softness and delicacy. Its popularity surged in the mid-20th century, particularly after World War II, when it became strongly associated with femininity, baby girls, and domesticity, partly due to marketing campaigns. The hexadecimal code #dea5a4 is a modern digital representation of a specific pastel pink hue.
First Recorded Use
The word 'pink' as a color name first appeared in the late 17th century. 'Pastel' as a descriptor for light, soft colors became more common with the rise of pastel art mediums in the 18th century.
Cultural Associations
Often associated with femininity, tenderness, and romance. Commonly used for baby girl clothing and nurseries. Can evoke feelings of sweetness, playfulness, and innocence. In some cultures, pink can symbolize happiness or good health. Used in various branding for products targeting women or children.
Code Snippets
/* Background */
.element {
background-color: #DEA5A4;
}
/* Text */
.element {
color: #DEA5A4;
}
/* Border */
.element {
border: 1px solid #DEA5A4;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#DEA5A4,
#D5E6E7
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#DEA5A4,
#D5E6E7
);
}
// SCSS variable
$pastel-pink: #DEA5A4;
// With RGB channels (useful for rgba() usage)
$pastel-pink-r: 222;
$pastel-pink-g: 165;
$pastel-pink-b: 164;
// Usage
.element {
background-color: $pastel-pink;
color: rgba($pastel-pink-r, $pastel-pink-g, $pastel-pink-b, 0.8);
}