HSL(9, 40%, 60%)
Red — Red color
Adjust Color
Color Information
Color Name
Red
Color Family
Red
Warm / Cool
🔴 Warm
Temperature
2000K
CSS Class
bg-[hsl(9,40%,60%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(9, 40%, 60%) | color: hsl(9, 40%, 60%) | |
| HEX | #C27C70 | color: #C27C70 | |
| RGB | rgb(194, 124, 112) | color: rgb(194, 124, 112) | |
| CMYK | cmyk(0%, 36%, 42%, 24%) | — | |
| HSV | hsv(9, 42%, 76%) | — | |
| HWB | hwb(9 44% 24%) | color: hwb(9 44% 24%) | |
| OKLCH | oklch(0.6566 0.09 30.26) | color: oklch(0.6566 0.09 30.26) | |
| Lab | lab(59.03 25.82 17.9) | color: lab(59.03 25.82 17.9) | |
| LCH | lch(59.03 31.42 34.73) | color: lch(59.03 31.42 34.73) |
Color Theory
Accessibility (WCAG)
White text on color
Black text on color
Colored text
Contrast Ratios
AA Normal (4.5:1)
AA Large (3:1)
AAA Normal (7:1)
Best text on this color: black
Color Blindness Simulation
Protanopia (Red-blind)
#A4A373 — rgb(164, 163, 115)
Deuteranopia (Green-blind)
#A8AD74 — rgb(168, 173, 116)
Tritanopia (Blue-blind)
#BF7576 — rgb(191, 117, 118)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(9, 40%, 60%);
text
color: hsl(9, 40%, 60%);
border
border: 2px solid hsl(9, 40%, 60%);
gradient light
background: linear-gradient(to right, hsl(9, 40%, 80%), hsl(9, 40%, 60%));
gradient dark
background: linear-gradient(to right, hsl(9, 40%, 60%), hsl(9, 40%, 40%))
hex
background-color: #C27C70;
tailwind
bg-[hsl(9,40%,60%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(9, 40%, 60%, 0.4);
css variable
--color-primary: hsl(9, 40%, 60%);
Related Colors
Use Cases for Red
Frequently Asked Questions
What are all the color codes for HSL(9, 40%, 60%)?
HEX: #C27C70 | RGB: rgb(194, 124, 112) | CMYK: 0%, 36%, 42%, 24% | HSV: 9°, 42%, 76%. Copy any format from the conversion table above.
What colors go well with #C27C70?
The complementary color is HSL(189, 40%, 60%). For a triadic harmony, use hues 9°, 129°, and 249°. For analogous combinations, try hues 339° and 39°. See the Color Harmony section above for complete palettes with previews.
How do I use HSL(9, 40%, 60%) in CSS?
As HSL: color: hsl(9, 40%, 60%); — As HEX: color: #C27C70; — As RGB: color: rgb(194, 124, 112); — Tailwind CSS: bg-[hsl(9,40%,60%)] — CSS variable: --color-primary: hsl(9, 40%, 60%);