HSL(0, 100%, 39%)
Red — Red color
Adjust Color
Color Information
Color Name
Red
Color Family
Red
Warm / Cool
🔴 Warm
Temperature
2000K
CSS Class
bg-[hsl(0,100%,39%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(0, 100%, 39%) | color: hsl(0, 100%, 39%) | |
| HEX | #C70000 | color: #C70000 | |
| RGB | rgb(199, 0, 0) | color: rgb(199, 0, 0) | |
| CMYK | cmyk(0%, 100%, 100%, 22%) | — | |
| HSV | hsv(0, 100%, 78%) | — | |
| HWB | hwb(0 0% 22%) | color: hwb(0 0% 22%) | |
| OKLCH | oklch(0.521 0.2138 29.23) | color: oklch(0.521 0.2138 29.23) | |
| Lab | lab(41.45 66.45 55.76) | color: lab(41.45 66.45 55.76) | |
| LCH | lch(41.45 86.75 40) | color: lch(41.45 86.75 40) |
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: white
Color Blindness Simulation
Protanopia (Red-blind)
#716F00 — rgb(113, 111, 0)
Deuteranopia (Green-blind)
#7C8B00 — rgb(124, 139, 0)
Tritanopia (Blue-blind)
#BD0000 — rgb(189, 0, 0)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(0, 100%, 39%);
text
color: hsl(0, 100%, 39%);
border
border: 2px solid hsl(0, 100%, 39%);
gradient light
background: linear-gradient(to right, hsl(0, 100%, 59%), hsl(0, 100%, 39%));
gradient dark
background: linear-gradient(to right, hsl(0, 100%, 39%), hsl(0, 100%, 19%))
hex
background-color: #C70000;
tailwind
bg-[hsl(0,100%,39%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(0, 100%, 39%, 0.4);
css variable
--color-primary: hsl(0, 100%, 39%);
Related Colors
Use Cases for Red
Frequently Asked Questions
What are all the color codes for HSL(0, 100%, 39%)?
HEX: #C70000 | RGB: rgb(199, 0, 0) | CMYK: 0%, 100%, 100%, 22% | HSV: 0°, 100%, 78%. Copy any format from the conversion table above.
What colors go well with #C70000?
The complementary color is HSL(180, 100%, 39%). For a triadic harmony, use hues 0°, 120°, and 240°. For analogous combinations, try hues 330° and 30°. See the Color Harmony section above for complete palettes with previews.
How do I use HSL(0, 100%, 39%) in CSS?
As HSL: color: hsl(0, 100%, 39%); — As HEX: color: #C70000; — As RGB: color: rgb(199, 0, 0); — Tailwind CSS: bg-[hsl(0,100%,39%)] — CSS variable: --color-primary: hsl(0, 100%, 39%);