Tea Rose Color Codes
Tea Rose is a light, saturated red with the hex code #F4C2C2, RGB values of 244, 194, 194 and an HSL value of hsl(0, 69%, 86%).
| HEX | #F4C2C2 |
|---|---|
| RGB | 244, 194, 194 |
| HSL | hsl(0, 69%, 86%) |
| HSV | 0°, 20%, 96% |
| CMYK | 0%, 20%, 20%, 4% |
| LAB | 82.76, 17.82, 6.82 |
| CIELCHuv | 82.76, 31.79, 12.17° |
- Nearest Pantone
- PMS 699 C ΔE 2.5 · approximate
- Nearest CSS name
-
pinkΔE 7.3
Source Wikipedia, List of colors
Tea Rose Color Hex Code
The Tea Rose color hex code is #F4C2C2. Those six digits are three pairs, F4 for red, C2 for green and C2 for blue, which is the same triplet a browser reads from the CSS value below.
#F4C2C2
Tea Rose Color RGB Code
The Tea Rose RGB code is rgb(244, 194, 194). Red carries the most light at 244 of 255, which is what puts this color where it sits on the wheel.
rgb(244, 194, 194)
Tea Rose Color HSV Code
The Tea Rose HSV code is 0°, 20%, 96%. Read it as a hue of 0 degrees, 20% saturation and 96% value, which is the form most color pickers use because moving one number changes one thing.
0°, 20%, 96%
Tea Rose Color CIELChuv Code
The Tea Rose CIELCHuv code is 82.76, 31.79, 12.17°. Unlike hex or RGB this one is perceptual: lightness 83 means light to the eye rather than to the screen, and chroma 32 is how far it sits from grey.
82.76, 31.79, 12.17°
Tonal scale
What are Tea Rose 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 Tea Rose Color Palette Codes?
Each of these is a hue rotation from #F4C2C2. They are generated, not curated, so they are exact.
Complementary
Directly opposite sits #C2F4F4, a very light, saturated 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
#F4C2DB and #F4DBC2 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
#C2F4C2 and #C2C2F4 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: #C2F4DB and #C2DBF4. 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 #C2F4F4, and #DBF4C2 with #DBC2F4. 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 Tea Rose 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
1.57:11.57
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
13.34:113.34
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 1.57:1 against white, Tea Rose 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 13.34:1.
Color vision
How Tea Rose 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#E0E0C2
Tea Rose shifts noticeably here. ΔE 24.9
No working red cones. Reds darken sharply and drift toward the same muddy olive as green.
Deuteranopia
About 1% of men#E3E6C2
Tea Rose changes substantially here. ΔE 28.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#F2C2C2
Tea Rose 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#CECECE
Tea Rose shifts noticeably here. ΔE 19.1
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, Tea Rose reads as #E3E6C2. That is a shift of ΔE 28.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 28.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 Tea Rose in code
:root {
--tea-rose: #F4C2C2;
}
.example {
color: var(--tea-rose);
}
// tailwind.config.js
theme: {
extend: {
colors: {
'tea-rose': '#F4C2C2',
},
},
}
// SwiftUI takes 0–1 components, not 0–255.
let teaRose = Color(
red: 0.957,
green: 0.761,
blue: 0.761
)
<!-- res/values/colors.xml -->
<color name="tea_rose">#F4C2C2</color>
// Flutter wants ARGB: FF for full opacity, then the hex.
const teaRose = Color(0xFFF4C2C2);