HSL(12, 75%, 15%)
Red — Red color
Adjust Color
Color Information
Color Name
Red
Color Family
Red
Warm / Cool
🔴 Warm
Temperature
2000K
CSS Class
bg-[hsl(12,75%,15%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(12, 75%, 15%) | color: hsl(12, 75%, 15%) | |
| HEX | #43150A | color: #43150A | |
| RGB | rgb(67, 21, 10) | color: rgb(67, 21, 10) | |
| CMYK | cmyk(0%, 69%, 85%, 74%) | — | |
| HSV | hsv(12, 85%, 26%) | — | |
| HWB | hwb(12 4% 74%) | color: hwb(12 4% 74%) | |
| OKLCH | oklch(0.2679 0.0742 34.73) | color: oklch(0.2679 0.0742 34.73) | |
| Lab | lab(14.13 21.52 17.4) | color: lab(14.13 21.52 17.4) | |
| LCH | lch(14.13 27.67 38.96) | color: lch(14.13 27.67 38.96) |
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)
#2F2F0D — rgb(47, 47, 13)
Deuteranopia (Green-blind)
#32350D — rgb(50, 53, 13)
Tritanopia (Blue-blind)
#410F0F — rgb(65, 15, 15)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(12, 75%, 15%);
text
color: hsl(12, 75%, 15%);
border
border: 2px solid hsl(12, 75%, 15%);
gradient light
background: linear-gradient(to right, hsl(12, 75%, 35%), hsl(12, 75%, 15%));
gradient dark
background: linear-gradient(to right, hsl(12, 75%, 15%), hsl(12, 75%, 0%))
hex
background-color: #43150A;
tailwind
bg-[hsl(12,75%,15%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(12, 75%, 15%, 0.4);
css variable
--color-primary: hsl(12, 75%, 15%);
Related Colors
Use Cases for Red
Frequently Asked Questions
What are all the color codes for HSL(12, 75%, 15%)?
HEX: #43150A | RGB: rgb(67, 21, 10) | CMYK: 0%, 69%, 85%, 74% | HSV: 12°, 85%, 26%. Copy any format from the conversion table above.
What colors go well with #43150A?
The complementary color is HSL(192, 75%, 15%). For a triadic harmony, use hues 12°, 132°, and 252°. For analogous combinations, try hues 342° and 42°. See the Color Harmony section above for complete palettes with previews.
How do I use HSL(12, 75%, 15%) in CSS?
As HSL: color: hsl(12, 75%, 15%); — As HEX: color: #43150A; — As RGB: color: rgb(67, 21, 10); — Tailwind CSS: bg-[hsl(12,75%,15%)] — CSS variable: --color-primary: hsl(12, 75%, 15%);