HSL(12, 100%, 75%)
Red — Red color
Adjust Color
Color Information
Color Name
Red
Color Family
Red
Warm / Cool
🔴 Warm
Temperature
2000K
CSS Class
bg-[hsl(12,100%,75%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(12, 100%, 75%) | color: hsl(12, 100%, 75%) | |
| HEX | #FF9980 | color: #FF9980 | |
| RGB | rgb(255, 153, 128) | color: rgb(255, 153, 128) | |
| CMYK | cmyk(0%, 40%, 50%, 0%) | — | |
| HSV | hsv(12, 50%, 100%) | — | |
| HWB | hwb(12 50% 0%) | color: hwb(12 50% 0%) | |
| OKLCH | oklch(0.7832 0.1282 34.62) | color: oklch(0.7832 0.1282 34.62) | |
| Lab | lab(73.29 35.62 29.48) | color: lab(73.29 35.62 29.48) | |
| LCH | lch(73.29 46.24 39.61) | color: lch(73.29 46.24 39.61) |
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)
#D3D286 — rgb(211, 210, 134)
Deuteranopia (Green-blind)
#D9E088 — rgb(217, 224, 136)
Tritanopia (Blue-blind)
#FA8B8C — rgb(250, 139, 140)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(12, 100%, 75%);
text
color: hsl(12, 100%, 75%);
border
border: 2px solid hsl(12, 100%, 75%);
gradient light
background: linear-gradient(to right, hsl(12, 100%, 95%), hsl(12, 100%, 75%));
gradient dark
background: linear-gradient(to right, hsl(12, 100%, 75%), hsl(12, 100%, 55%))
hex
background-color: #FF9980;
tailwind
bg-[hsl(12,100%,75%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(12, 100%, 75%, 0.4);
css variable
--color-primary: hsl(12, 100%, 75%);
Related Colors
Use Cases for Red
Frequently Asked Questions
What are all the color codes for HSL(12, 100%, 75%)?
HEX: #FF9980 | RGB: rgb(255, 153, 128) | CMYK: 0%, 40%, 50%, 0% | HSV: 12°, 50%, 100%. Copy any format from the conversion table above.
What colors go well with #FF9980?
The complementary color is HSL(192, 100%, 75%). For a triadic harmony, use hues 12°, 132°, and 252°. For analogous combinations, try hues 342° and 42°. See the Color Harmony section above for complete palettes with previews.
How do I use HSL(12, 100%, 75%) in CSS?
As HSL: color: hsl(12, 100%, 75%); — As HEX: color: #FF9980; — As RGB: color: rgb(255, 153, 128); — Tailwind CSS: bg-[hsl(12,100%,75%)] — CSS variable: --color-primary: hsl(12, 100%, 75%);