HSL(100, 50%, 5%)
Very Dark Green — Green color
Adjust Color
Color Information
Color Name
Very Dark Green
Color Family
Green
Warm / Cool
🔵 Cool
Temperature
5000K
CSS Class
bg-[hsl(100,50%,5%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(100, 50%, 5%) | color: hsl(100, 50%, 5%) | |
| HEX | #0B1306 | color: #0B1306 | |
| RGB | rgb(11, 19, 6) | color: rgb(11, 19, 6) | |
| CMYK | cmyk(42%, 0%, 68%, 93%) | — | |
| HSV | hsv(97, 68%, 7%) | — | |
| HWB | hwb(97 2% 93%) | color: hwb(97 2% 93%) | |
| OKLCH | oklch(0.174 0.0291 133.52) | color: oklch(0.174 0.0291 133.52) | |
| Lab | lab(4.97 -4.88 4.89) | color: lab(4.97 -4.88 4.89) | |
| LCH | lch(4.97 6.91 134.94) | color: lch(4.97 6.91 134.94) |
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)
#0E0F09 — rgb(14, 15, 9)
Deuteranopia (Green-blind)
#0E0D0A — rgb(14, 13, 10)
Tritanopia (Blue-blind)
#0B0C0C — rgb(11, 12, 12)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(100, 50%, 5%);
text
color: hsl(100, 50%, 5%);
border
border: 2px solid hsl(100, 50%, 5%);
gradient light
background: linear-gradient(to right, hsl(100, 50%, 25%), hsl(100, 50%, 5%));
gradient dark
background: linear-gradient(to right, hsl(100, 50%, 5%), hsl(100, 50%, 0%))
hex
background-color: #0B1306;
tailwind
bg-[hsl(100,50%,5%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(100, 50%, 5%, 0.4);
css variable
--color-primary: hsl(100, 50%, 5%);
Related Colors
Use Cases for Very Dark Green
Frequently Asked Questions
What are all the color codes for HSL(100, 50%, 5%)?
HEX: #0B1306 | RGB: rgb(11, 19, 6) | CMYK: 42%, 0%, 68%, 93% | HSV: 97°, 68%, 7%. Copy any format from the conversion table above.
What colors go well with #0B1306?
The complementary color is HSL(280, 50%, 5%). For a triadic harmony, use hues 100°, 220°, and 340°. For analogous combinations, try hues 70° and 130°. See the Color Harmony section above for complete palettes with previews.
How do I use HSL(100, 50%, 5%) in CSS?
As HSL: color: hsl(100, 50%, 5%); — As HEX: color: #0B1306; — As RGB: color: rgb(11, 19, 6); — Tailwind CSS: bg-[hsl(100,50%,5%)] — CSS variable: --color-primary: hsl(100, 50%, 5%);