HSL(14, 30%, 15%)
Red — Red color
Adjust Color
Color Information
Color Name
Red
Color Family
Red
Warm / Cool
🔴 Warm
Temperature
2000K
CSS Class
bg-[hsl(14,30%,15%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(14, 30%, 15%) | color: hsl(14, 30%, 15%) | |
| HEX | #32201B | color: #32201B | |
| RGB | rgb(50, 32, 27) | color: rgb(50, 32, 27) | |
| CMYK | cmyk(0%, 36%, 46%, 80%) | — | |
| HSV | hsv(13, 46%, 20%) | — | |
| HWB | hwb(13 11% 80%) | color: hwb(13 11% 80%) | |
| OKLCH | oklch(0.2646 0.0297 36.16) | color: oklch(0.2646 0.0297 36.16) | |
| Lab | lab(14.35 7.92 6.9) | color: lab(14.35 7.92 6.9) | |
| LCH | lch(14.35 10.5 41.06) | color: lch(14.35 10.5 41.06) |
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)
#2A2A1C — rgb(42, 42, 28)
Deuteranopia (Green-blind)
#2B2D1D — rgb(43, 45, 29)
Tritanopia (Blue-blind)
#311D1D — rgb(49, 29, 29)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(14, 30%, 15%);
text
color: hsl(14, 30%, 15%);
border
border: 2px solid hsl(14, 30%, 15%);
gradient light
background: linear-gradient(to right, hsl(14, 30%, 35%), hsl(14, 30%, 15%));
gradient dark
background: linear-gradient(to right, hsl(14, 30%, 15%), hsl(14, 30%, 0%))
hex
background-color: #32201B;
tailwind
bg-[hsl(14,30%,15%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(14, 30%, 15%, 0.4);
css variable
--color-primary: hsl(14, 30%, 15%);
Related Colors
Use Cases for Red
Frequently Asked Questions
What are all the color codes for HSL(14, 30%, 15%)?
HEX: #32201B | RGB: rgb(50, 32, 27) | CMYK: 0%, 36%, 46%, 80% | HSV: 13°, 46%, 20%. Copy any format from the conversion table above.
What colors go well with #32201B?
The complementary color is HSL(194, 30%, 15%). For a triadic harmony, use hues 14°, 134°, and 254°. For analogous combinations, try hues 344° and 44°. See the Color Harmony section above for complete palettes with previews.
How do I use HSL(14, 30%, 15%) in CSS?
As HSL: color: hsl(14, 30%, 15%); — As HEX: color: #32201B; — As RGB: color: rgb(50, 32, 27); — Tailwind CSS: bg-[hsl(14,30%,15%)] — CSS variable: --color-primary: hsl(14, 30%, 15%);