Pastel Pink

HEX: #DEA5A4 | Modern Palette

On White
2.09:1
FAIL
On Black
10.02:1
PASS

Color Specifications

HEX
#DEA5A4
RGB
222, 165, 164
HSL
1°, 26% ,87%
CMYK
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

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 #DEA5A4 from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Pastel Warm
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #B8B8A2
Protanopia #ACACA4
Tritanopia #DEA5A5
Achromatopsia #B3B3B3

Frequently Asked Questions

Pastel Pink (#DEA5A4) is a color with RGB(222, 165, 164) and HSL(1.03°, 26.13%, 87.06%).

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

#DEA5A4 is suitable for Text, Background, Print and works well with Pastel, Warm styles.

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.

Similar Named Colors

Pale Chestnut #DDADAF ΔE 2.95
Tuscany #C09999 ΔE 6.46
Spanish Pink #F7BFBE ΔE 6.61
Ruddy Pink #E18E96 ΔE 6.95

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);
}