HSL(0, 50%, 25%)
Red — Red color
Adjust Color
Color Information
Color Name
Red
Color Family
Red
Warm / Cool
🔴 Warm
Temperature
2000K
CSS Class
bg-[hsl(0,50%,25%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(0, 50%, 25%) | color: hsl(0, 50%, 25%) | |
| HEX | #602020 | color: #602020 | |
| RGB | rgb(96, 32, 32) | color: rgb(96, 32, 32) | |
| CMYK | cmyk(0%, 67%, 67%, 62%) | — | |
| HSV | hsv(0, 67%, 38%) | — | |
| HWB | hwb(0 13% 62%) | color: hwb(0 13% 62%) | |
| OKLCH | oklch(0.3421 0.0935 23.43) | color: oklch(0.3421 0.0935 23.43) | |
| Lab | lab(22.39 29.1 15.52) | color: lab(22.39 29.1 15.52) | |
| LCH | lch(22.39 32.98 28.07) | color: lch(22.39 32.98 28.07) |
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)
#444420 — rgb(68, 68, 32)
Deuteranopia (Green-blind)
#484D20 — rgb(72, 77, 32)
Tritanopia (Blue-blind)
#5D2020 — rgb(93, 32, 32)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(0, 50%, 25%);
text
color: hsl(0, 50%, 25%);
border
border: 2px solid hsl(0, 50%, 25%);
gradient light
background: linear-gradient(to right, hsl(0, 50%, 45%), hsl(0, 50%, 25%));
gradient dark
background: linear-gradient(to right, hsl(0, 50%, 25%), hsl(0, 50%, 5%))
hex
background-color: #602020;
tailwind
bg-[hsl(0,50%,25%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(0, 50%, 25%, 0.4);
css variable
--color-primary: hsl(0, 50%, 25%);
Related Colors
Use Cases for Red
Frequently Asked Questions
What are all the color codes for HSL(0, 50%, 25%)?
HEX: #602020 | RGB: rgb(96, 32, 32) | CMYK: 0%, 67%, 67%, 62% | HSV: 0°, 67%, 38%. Copy any format from the conversion table above.
What colors go well with #602020?
The complementary color is HSL(180, 50%, 25%). 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, 50%, 25%) in CSS?
As HSL: color: hsl(0, 50%, 25%); — As HEX: color: #602020; — As RGB: color: rgb(96, 32, 32); — Tailwind CSS: bg-[hsl(0,50%,25%)] — CSS variable: --color-primary: hsl(0, 50%, 25%);