HSL(30, 20%, 10%)
Very Dark Orange — Orange color
Adjust Color
Color Information
Color Name
Very Dark Orange
Color Family
Orange
Warm / Cool
🔴 Warm
Temperature
2700K
CSS Class
bg-[hsl(30,20%,10%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(30, 20%, 10%) | color: hsl(30, 20%, 10%) | |
| HEX | #1F1A14 | color: #1F1A14 | |
| RGB | rgb(31, 26, 20) | color: rgb(31, 26, 20) | |
| CMYK | cmyk(0%, 16%, 35%, 88%) | — | |
| HSV | hsv(33, 35%, 12%) | — | |
| HWB | hwb(33 8% 88%) | color: hwb(33 8% 88%) | |
| OKLCH | oklch(0.2215 0.0137 72.09) | color: oklch(0.2215 0.0137 72.09) | |
| Lab | lab(9.65 1.19 4.98) | color: lab(9.65 1.19 4.98) | |
| LCH | lch(9.65 5.12 76.56) | color: lch(9.65 5.12 76.56) |
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)
#1D1D15 — rgb(29, 29, 21)
Deuteranopia (Green-blind)
#1D1E16 — rgb(29, 30, 22)
Tritanopia (Blue-blind)
#1F1717 — rgb(31, 23, 23)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(30, 20%, 10%);
text
color: hsl(30, 20%, 10%);
border
border: 2px solid hsl(30, 20%, 10%);
gradient light
background: linear-gradient(to right, hsl(30, 20%, 30%), hsl(30, 20%, 10%));
gradient dark
background: linear-gradient(to right, hsl(30, 20%, 10%), hsl(30, 20%, 0%))
hex
background-color: #1F1A14;
tailwind
bg-[hsl(30,20%,10%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(30, 20%, 10%, 0.4);
css variable
--color-primary: hsl(30, 20%, 10%);
Related Colors
Use Cases for Very Dark Orange
Frequently Asked Questions
What are all the color codes for HSL(30, 20%, 10%)?
HEX: #1F1A14 | RGB: rgb(31, 26, 20) | CMYK: 0%, 16%, 35%, 88% | HSV: 33°, 35%, 12%. Copy any format from the conversion table above.
What colors go well with #1F1A14?
The complementary color is HSL(210, 20%, 10%). For a triadic harmony, use hues 30°, 150°, and 270°. For analogous combinations, try hues 0° and 60°. See the Color Harmony section above for complete palettes with previews.
How do I use HSL(30, 20%, 10%) in CSS?
As HSL: color: hsl(30, 20%, 10%); — As HEX: color: #1F1A14; — As RGB: color: rgb(31, 26, 20); — Tailwind CSS: bg-[hsl(30,20%,10%)] — CSS variable: --color-primary: hsl(30, 20%, 10%);