Pastel Pink Color Codes
Pastel Pink is a light, muted red with the hex code #DEA5A4, RGB values of 222, 165, 164 and an HSL value of hsl(1, 47%, 76%).
| HEX | #DEA5A4 |
|---|---|
| RGB | 222, 165, 164 |
| HSL | hsl(1, 47%, 76%) |
| HSV | 1°, 26%, 87% |
| CMYK | 0%, 26%, 26%, 13% |
| LAB | 72.97, 20.88, 8.77 |
| CIELCHuv | 72.97, 37.61, 13.22° |
- Nearest Pantone
- PMS 693 C ΔE 2.6 · approximate
- Nearest CSS name
-
rosybrownΔE 10.4
Source Wikipedia, List of colors
Pastel Pink Color Hex Code
The Pastel Pink color hex code is #DEA5A4. Those six digits are three pairs, DE for red, A5 for green and A4 for blue, which is the same triplet a browser reads from the CSS value below.
#DEA5A4
Pastel Pink Color RGB Code
The Pastel Pink RGB code is rgb(222, 165, 164). Red carries the most light at 222 of 255, which is what puts this color where it sits on the wheel.
rgb(222, 165, 164)
Pastel Pink Color HSV Code
The Pastel Pink HSV code is 1°, 26%, 87%. Read it as a hue of 1 degrees, 26% saturation and 87% value, which is the form most color pickers use because moving one number changes one thing.
1°, 26%, 87%
Pastel Pink Color CIELChuv Code
The Pastel Pink CIELCHuv code is 72.97, 37.61, 13.22°. Unlike hex or RGB this one is perceptual: lightness 73 means light to the eye rather than to the screen, and chroma 38 is how far it sits from grey.
72.97, 37.61, 13.22°
Tonal scale
What are Pastel Pink Color Palettes?
A shade mixes toward black, a tint toward white, a tone toward grey. Every step keeps the hue and is copy-ready.
Shades, toward black
Tints, toward white
Tones, toward grey
Palettes
What are Pastel Pink Color Palette Codes?
Each of these is a hue rotation from #DEA5A4. They are generated, not curated, so they are exact.
Complementary
Directly opposite sits #A4DDDE, a light, muted teal. No other pairing separates two hues further, so this is the one to reach for when a single element has to win attention. Neither is especially saturated, so this pairing stays calm enough for large areas of both.
Analogous
#DEA4C0 and #DEC2A4 sit 30 degrees either side. All three share most of their hue, so the set reads as one family instead of three separate decisions. Good for backgrounds and for state variations that should not announce themselves.
Triadic
#A4DEA5 and #A5A4DE complete an even 120 degree split. Three fully independent hues, so one has to lead: keep this base dominant and let the other two appear in small quantities.
Split-complementary
Instead of the direct complement, this takes the two hues either side of it: #A4DEC2 and #A4C0DE. Almost the same contrast, without the edge shimmer a true complementary pair produces at high saturation.
Tetradic
Two complementary pairs forming a rectangle: this base with #A4DDDE, and #C0DEA4 with #C2A4DE. The richest of the five and the hardest to balance, so treat the darkest of the four as the lead and hold the other three well back.
Accessibility
Contrast checker: is Pastel Pink accessible?
Measured against white and against black, with a separate verdict for each element type. Small text, large text and UI components have different thresholds, so one pass or fail for the whole color would be wrong roughly a third of the time.
White background
2.09:12.09
contrast ratio on white background
| Element | AA | AAA |
|---|---|---|
| Small text needs 4.5:1 / 7:1 | Fails | Fails |
| Large text needs 3:1 / 4.5:1 | Fails | Fails |
| UI component needs 3:1 | Fails | n/a |
Black background
10.02:110.02
contrast ratio on black background
| Element | AA | AAA |
|---|---|---|
| Small text needs 4.5:1 / 7:1 | Passes | Passes |
| Large text needs 3:1 / 4.5:1 | Passes | Passes |
| UI component needs 3:1 | Passes | n/a |
At 2.09:1 against white, Pastel Pink is a fill color rather than a text color. Use it for surfaces, borders and large display type, and set the copy in ink. Text placed on it should be black, which gives 10.02:1.
Color vision
How Pastel Pink looks with color blindness
Around 300 million people see color differently from the way it is specified. Each card shows the actual color beside how it appears, and how common that form of vision is.
Protanopia
About 1% of men#C8C7A4
Pastel Pink changes substantially here. ΔE 28.6
No working red cones. Reds darken sharply and drift toward the same muddy olive as green.
Deuteranopia
About 1% of men#CBCFA4
Pastel Pink changes substantially here. ΔE 33.0
No working green cones. With the milder deuteranomaly at nearer 6% of men, this is by far the most common form, and the one worth designing around.
Tritanopia
About 1 in 10,000#DCA4A4
Pastel Pink holds up almost unchanged here. ΔE 0.8
No working blue cones. Blues shift toward green and yellows toward pink. Rare, and unlike the others it is not sex-linked, so it affects men and women equally.
Achromatopsia
About 1 in 30,000#B3B3B3
Pastel Pink shifts noticeably here. ΔE 22.6
No color vision at all. Also a fair proxy for how the color survives a greyscale print or a failing screen.
To a deuteranope, the most common form, Pastel Pink reads as #CBCFA4. That is a shift of ΔE 33.0, so it is a different color to roughly one man in sixteen. It sits in the red end of the spectrum, which is exactly where red-green deficiency does its damage. Never pair it with a green of similar lightness to signal a difference in meaning: to a large minority the two become one color. The widest shift is under deuteranopia, at ΔE 33.0. The rule this leads to needs no simulator: never let color be the only thing carrying a message. Add a label, an icon, or a clear difference in lightness, and the problem disappears for everyone.
Snippets
Using Pastel Pink in code
:root {
--pastel-pink: #DEA5A4;
}
.example {
color: var(--pastel-pink);
}
// tailwind.config.js
theme: {
extend: {
colors: {
'pastel-pink': '#DEA5A4',
},
},
}
// SwiftUI takes 0–1 components, not 0–255.
let pastelPink = Color(
red: 0.871,
green: 0.647,
blue: 0.643
)
<!-- res/values/colors.xml -->
<color name="pastel_pink">#DEA5A4</color>
// Flutter wants ARGB: FF for full opacity, then the hex.
const pastelPink = Color(0xFFDEA5A4);