HSL(6, 90%, 80%)
Red — Red color
Adjust Color
Color Information
Color Name
Red
Color Family
Red
Warm / Cool
🔴 Warm
Temperature
2000K
CSS Class
bg-[hsl(6,90%,80%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(6, 90%, 80%) | color: hsl(6, 90%, 80%) | |
| HEX | #FAA79E | color: #FAA79E | |
| RGB | rgb(250, 167, 158) | color: rgb(250, 167, 158) | |
| CMYK | cmyk(0%, 33%, 37%, 2%) | — | |
| HSV | hsv(6, 37%, 98%) | — | |
| HWB | hwb(6 62% 2%) | color: hwb(6 62% 2%) | |
| OKLCH | oklch(0.8072 0.0998 26.3) | color: oklch(0.8072 0.0998 26.3) | |
| Lab | lab(76.34 29.53 17.23) | color: lab(76.34 29.53 17.23) | |
| LCH | lch(76.34 34.19 30.26) | color: lch(76.34 34.19 30.26) |
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)
#D6D5A0 — rgb(214, 213, 160)
Deuteranopia (Green-blind)
#DBE1A1 — rgb(219, 225, 161)
Tritanopia (Blue-blind)
#F6A2A2 — rgb(246, 162, 162)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(6, 90%, 80%);
text
color: hsl(6, 90%, 80%);
border
border: 2px solid hsl(6, 90%, 80%);
gradient light
background: linear-gradient(to right, hsl(6, 90%, 100%), hsl(6, 90%, 80%));
gradient dark
background: linear-gradient(to right, hsl(6, 90%, 80%), hsl(6, 90%, 60%))
hex
background-color: #FAA79E;
tailwind
bg-[hsl(6,90%,80%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(6, 90%, 80%, 0.4);
css variable
--color-primary: hsl(6, 90%, 80%);
Related Colors
Use Cases for Red
Frequently Asked Questions
What are all the color codes for HSL(6, 90%, 80%)?
HEX: #FAA79E | RGB: rgb(250, 167, 158) | CMYK: 0%, 33%, 37%, 2% | HSV: 6°, 37%, 98%. Copy any format from the conversion table above.
What colors go well with #FAA79E?
The complementary color is HSL(186, 90%, 80%). For a triadic harmony, use hues 6°, 126°, and 246°. For analogous combinations, try hues 336° and 36°. See the Color Harmony section above for complete palettes with previews.
How do I use HSL(6, 90%, 80%) in CSS?
As HSL: color: hsl(6, 90%, 80%); — As HEX: color: #FAA79E; — As RGB: color: rgb(250, 167, 158); — Tailwind CSS: bg-[hsl(6,90%,80%)] — CSS variable: --color-primary: hsl(6, 90%, 80%);