HSL(50, 100%, 5%)
Very Dark Yellow — Yellow color
Adjust Color
Color Information
Color Name
Very Dark Yellow
Color Family
Yellow
Warm / Cool
🔴 Warm
Temperature
2700K
CSS Class
bg-[hsl(50,100%,5%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(50, 100%, 5%) | color: hsl(50, 100%, 5%) | |
| HEX | #1A1500 | color: #1A1500 | |
| RGB | rgb(26, 21, 0) | color: rgb(26, 21, 0) | |
| CMYK | cmyk(0%, 19%, 100%, 90%) | — | |
| HSV | hsv(48, 100%, 10%) | — | |
| HWB | hwb(48 0% 90%) | color: hwb(48 0% 90%) | |
| OKLCH | oklch(0.1959 0.0405 98.02) | color: oklch(0.1959 0.0405 98.02) | |
| Lab | lab(6.83 -1 10.21) | color: lab(6.83 -1 10.21) | |
| LCH | lch(6.83 10.26 95.59) | color: lch(6.83 10.26 95.59) |
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)
#181805 — rgb(24, 24, 5)
Deuteranopia (Green-blind)
#181906 — rgb(24, 25, 6)
Tritanopia (Blue-blind)
#1A090A — rgb(26, 9, 10)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(50, 100%, 5%);
text
color: hsl(50, 100%, 5%);
border
border: 2px solid hsl(50, 100%, 5%);
gradient light
background: linear-gradient(to right, hsl(50, 100%, 25%), hsl(50, 100%, 5%));
gradient dark
background: linear-gradient(to right, hsl(50, 100%, 5%), hsl(50, 100%, 0%))
hex
background-color: #1A1500;
tailwind
bg-[hsl(50,100%,5%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(50, 100%, 5%, 0.4);
css variable
--color-primary: hsl(50, 100%, 5%);
Related Colors
Use Cases for Very Dark Yellow
Frequently Asked Questions
What are all the color codes for HSL(50, 100%, 5%)?
HEX: #1A1500 | RGB: rgb(26, 21, 0) | CMYK: 0%, 19%, 100%, 90% | HSV: 48°, 100%, 10%. Copy any format from the conversion table above.
What colors go well with #1A1500?
The complementary color is HSL(230, 100%, 5%). For a triadic harmony, use hues 50°, 170°, and 290°. For analogous combinations, try hues 20° and 80°. See the Color Harmony section above for complete palettes with previews.
How do I use HSL(50, 100%, 5%) in CSS?
As HSL: color: hsl(50, 100%, 5%); — As HEX: color: #1A1500; — As RGB: color: rgb(26, 21, 0); — Tailwind CSS: bg-[hsl(50,100%,5%)] — CSS variable: --color-primary: hsl(50, 100%, 5%);