HSL(2, 90%, 80%)
Red — Red color
Adjust Color
Color Information
Color Name
Red
Color Family
Red
Warm / Cool
🔴 Warm
Temperature
2000K
CSS Class
bg-[hsl(2,90%,80%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(2, 90%, 80%) | color: hsl(2, 90%, 80%) | |
| HEX | #FAA19E | color: #FAA19E | |
| RGB | rgb(250, 161, 158) | color: rgb(250, 161, 158) | |
| CMYK | cmyk(0%, 36%, 37%, 2%) | — | |
| HSV | hsv(2, 37%, 98%) | — | |
| HWB | hwb(2 62% 2%) | color: hwb(2 62% 2%) | |
| OKLCH | oklch(0.797 0.1066 21.83) | color: oklch(0.797 0.1066 21.83) | |
| Lab | lab(75.01 32.67 15.37) | color: lab(75.01 32.67 15.37) | |
| LCH | lch(75.01 36.1 25.2) | color: lch(75.01 36.1 25.2) |
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)
#D3D39F — rgb(211, 211, 159)
Deuteranopia (Green-blind)
#D9DF9F — rgb(217, 223, 159)
Tritanopia (Blue-blind)
#F69F9F — rgb(246, 159, 159)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(2, 90%, 80%);
text
color: hsl(2, 90%, 80%);
border
border: 2px solid hsl(2, 90%, 80%);
gradient light
background: linear-gradient(to right, hsl(2, 90%, 100%), hsl(2, 90%, 80%));
gradient dark
background: linear-gradient(to right, hsl(2, 90%, 80%), hsl(2, 90%, 60%))
hex
background-color: #FAA19E;
tailwind
bg-[hsl(2,90%,80%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(2, 90%, 80%, 0.4);
css variable
--color-primary: hsl(2, 90%, 80%);
Related Colors
Use Cases for Red
Frequently Asked Questions
What are all the color codes for HSL(2, 90%, 80%)?
HEX: #FAA19E | RGB: rgb(250, 161, 158) | CMYK: 0%, 36%, 37%, 2% | HSV: 2°, 37%, 98%. Copy any format from the conversion table above.
What colors go well with #FAA19E?
The complementary color is HSL(182, 90%, 80%). For a triadic harmony, use hues 2°, 122°, and 242°. For analogous combinations, try hues 332° and 32°. See the Color Harmony section above for complete palettes with previews.
How do I use HSL(2, 90%, 80%) in CSS?
As HSL: color: hsl(2, 90%, 80%); — As HEX: color: #FAA19E; — As RGB: color: rgb(250, 161, 158); — Tailwind CSS: bg-[hsl(2,90%,80%)] — CSS variable: --color-primary: hsl(2, 90%, 80%);