HSL(5, 50%, 32%)
Red — Red color
Adjust Color
Color Information
Color Name
Red
Color Family
Red
Warm / Cool
🔴 Warm
Temperature
2000K
CSS Class
bg-[hsl(5,50%,32%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(5, 50%, 32%) | color: hsl(5, 50%, 32%) | |
| HEX | #7A3029 | color: #7A3029 | |
| RGB | rgb(122, 48, 41) | color: rgb(122, 48, 41) | |
| CMYK | cmyk(0%, 61%, 66%, 52%) | — | |
| HSV | hsv(5, 66%, 48%) | — | |
| HWB | hwb(5 16% 52%) | color: hwb(5 16% 52%) | |
| OKLCH | oklch(0.4124 0.1051 27.94) | color: oklch(0.4124 0.1051 27.94) | |
| Lab | lab(30.43 31.78 20.77) | color: lab(30.43 31.78 20.77) | |
| LCH | lch(30.43 37.97 33.17) | color: lch(30.43 37.97 33.17) |
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)
#5A592B — rgb(90, 89, 43)
Deuteranopia (Green-blind)
#5E642B — rgb(94, 100, 43)
Tritanopia (Blue-blind)
#762C2C — rgb(118, 44, 44)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(5, 50%, 32%);
text
color: hsl(5, 50%, 32%);
border
border: 2px solid hsl(5, 50%, 32%);
gradient light
background: linear-gradient(to right, hsl(5, 50%, 52%), hsl(5, 50%, 32%));
gradient dark
background: linear-gradient(to right, hsl(5, 50%, 32%), hsl(5, 50%, 12%))
hex
background-color: #7A3029;
tailwind
bg-[hsl(5,50%,32%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(5, 50%, 32%, 0.4);
css variable
--color-primary: hsl(5, 50%, 32%);
Related Colors
Use Cases for Red
Frequently Asked Questions
What are all the color codes for HSL(5, 50%, 32%)?
HEX: #7A3029 | RGB: rgb(122, 48, 41) | CMYK: 0%, 61%, 66%, 52% | HSV: 5°, 66%, 48%. Copy any format from the conversion table above.
What colors go well with #7A3029?
The complementary color is HSL(185, 50%, 32%). For a triadic harmony, use hues 5°, 125°, and 245°. For analogous combinations, try hues 335° and 35°. See the Color Harmony section above for complete palettes with previews.
How do I use HSL(5, 50%, 32%) in CSS?
As HSL: color: hsl(5, 50%, 32%); — As HEX: color: #7A3029; — As RGB: color: rgb(122, 48, 41); — Tailwind CSS: bg-[hsl(5,50%,32%)] — CSS variable: --color-primary: hsl(5, 50%, 32%);