HSL(0, 100%, 36%)
Red — Red color
Adjust Color
Color Information
Color Name
Red
Color Family
Red
Warm / Cool
🔴 Warm
Temperature
2000K
CSS Class
bg-[hsl(0,100%,36%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(0, 100%, 36%) | color: hsl(0, 100%, 36%) | |
| HEX | #B80000 | color: #B80000 | |
| RGB | rgb(184, 0, 0) | color: rgb(184, 0, 0) | |
| CMYK | cmyk(0%, 100%, 100%, 28%) | — | |
| HSV | hsv(0, 100%, 72%) | — | |
| HWB | hwb(0 0% 28%) | color: hwb(0 0% 28%) | |
| OKLCH | oklch(0.4914 0.2017 29.23) | color: oklch(0.4914 0.2017 29.23) | |
| Lab | lab(38.19 62.68 52.59) | color: lab(38.19 62.68 52.59) | |
| LCH | lch(38.19 81.82 40) | color: lch(38.19 81.82 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)
#686700 — rgb(104, 103, 0)
Deuteranopia (Green-blind)
#738100 — rgb(115, 129, 0)
Tritanopia (Blue-blind)
#AF0000 — rgb(175, 0, 0)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(0, 100%, 36%);
text
color: hsl(0, 100%, 36%);
border
border: 2px solid hsl(0, 100%, 36%);
gradient light
background: linear-gradient(to right, hsl(0, 100%, 56%), hsl(0, 100%, 36%));
gradient dark
background: linear-gradient(to right, hsl(0, 100%, 36%), hsl(0, 100%, 16%))
hex
background-color: #B80000;
tailwind
bg-[hsl(0,100%,36%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(0, 100%, 36%, 0.4);
css variable
--color-primary: hsl(0, 100%, 36%);
Related Colors
Use Cases for Red
Frequently Asked Questions
What are all the color codes for HSL(0, 100%, 36%)?
HEX: #B80000 | RGB: rgb(184, 0, 0) | CMYK: 0%, 100%, 100%, 28% | HSV: 0°, 100%, 72%. Copy any format from the conversion table above.
What colors go well with #B80000?
The complementary color is HSL(180, 100%, 36%). 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%, 36%) in CSS?
As HSL: color: hsl(0, 100%, 36%); — As HEX: color: #B80000; — As RGB: color: rgb(184, 0, 0); — Tailwind CSS: bg-[hsl(0,100%,36%)] — CSS variable: --color-primary: hsl(0, 100%, 36%);