HSL(30, 50%, 5%)
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,50%,5%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(30, 50%, 5%) | color: hsl(30, 50%, 5%) | |
| HEX | #130D06 | color: #130D06 | |
| RGB | rgb(19, 13, 6) | color: rgb(19, 13, 6) | |
| CMYK | cmyk(0%, 32%, 68%, 93%) | — | |
| HSV | hsv(32, 68%, 7%) | — | |
| HWB | hwb(32 2% 93%) | color: hwb(32 2% 93%) | |
| OKLCH | oklch(0.1645 0.0179 72.65) | color: oklch(0.1645 0.0179 72.65) | |
| Lab | lab(3.97 1.13 3.5) | color: lab(3.97 1.13 3.5) | |
| LCH | lch(3.97 3.68 72.11) | color: lch(3.97 3.68 72.11) |
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)
#101008 — rgb(16, 16, 8)
Deuteranopia (Green-blind)
#111108 — rgb(17, 17, 8)
Tritanopia (Blue-blind)
#130909 — rgb(19, 9, 9)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(30, 50%, 5%);
text
color: hsl(30, 50%, 5%);
border
border: 2px solid hsl(30, 50%, 5%);
gradient light
background: linear-gradient(to right, hsl(30, 50%, 25%), hsl(30, 50%, 5%));
gradient dark
background: linear-gradient(to right, hsl(30, 50%, 5%), hsl(30, 50%, 0%))
hex
background-color: #130D06;
tailwind
bg-[hsl(30,50%,5%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(30, 50%, 5%, 0.4);
css variable
--color-primary: hsl(30, 50%, 5%);
Related Colors
Use Cases for Very Dark Orange
Frequently Asked Questions
What are all the color codes for HSL(30, 50%, 5%)?
HEX: #130D06 | RGB: rgb(19, 13, 6) | CMYK: 0%, 32%, 68%, 93% | HSV: 32°, 68%, 7%. Copy any format from the conversion table above.
What colors go well with #130D06?
The complementary color is HSL(210, 50%, 5%). 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, 50%, 5%) in CSS?
As HSL: color: hsl(30, 50%, 5%); — As HEX: color: #130D06; — As RGB: color: rgb(19, 13, 6); — Tailwind CSS: bg-[hsl(30,50%,5%)] — CSS variable: --color-primary: hsl(30, 50%, 5%);