HSL(10, 100%, 10%)

Very Dark Red — Red color

Adjust Color

Color Information

Color Name

Very Dark Red

Color Family

Red

Warm / Cool

🔴 Warm

Temperature

2000K

CSS Class

bg-[hsl(10,100%,10%)]

Color Conversions

Format Value CSS Usage
HSL hsl(10, 100%, 10%) color: hsl(10, 100%, 10%)
HEX #330900 color: #330900
RGB rgb(51, 9, 0) color: rgb(51, 9, 0)
CMYK cmyk(0%, 82%, 100%, 80%)
HSV hsv(11, 100%, 20%)
HWB hwb(11 0% 80%) color: hwb(11 0% 80%)
OKLCH oklch(0.2157 0.0708 37.89) color: oklch(0.2157 0.0708 37.89)
Lab lab(8.12 20.4 12.63) color: lab(8.12 20.4 12.63)
LCH lch(8.12 23.99 31.76) color: lch(8.12 23.99 31.76)

Color Theory

Complementary

Triadic

Analogous

Tetradic (Square)

Split-Complementary

Accessibility (WCAG)

White text on color

Black text on color

Color on white bg

Colored text

Contrast Ratios

vs White 17.8:1
vs Black 1.18:1

AA Normal (4.5:1)

on White: PASS ✓ on Black: FAIL ✗

AA Large (3:1)

on White: PASS ✓ on Black: FAIL ✗

AAA Normal (7:1)

on White: PASS ✓

Best text on this color: white

Color Blindness Simulation

Protanopia (Red-blind)

#212002 — rgb(33, 32, 2)

Deuteranopia (Green-blind)

#232603 — rgb(35, 38, 3)

Tritanopia (Blue-blind)

#310404 — rgb(49, 4, 4)

Tints & Shades

Tints (Lighter →)

← Shades (Darker)

Saturation (0% → 100%)

CSS Code Snippets

background

background-color: hsl(10, 100%, 10%);

text

color: hsl(10, 100%, 10%);

border

border: 2px solid hsl(10, 100%, 10%);

gradient light

background: linear-gradient(to right, hsl(10, 100%, 30%), hsl(10, 100%, 10%));

gradient dark

background: linear-gradient(to right, hsl(10, 100%, 10%), hsl(10, 100%, 0%))

hex

background-color: #330900;

tailwind

bg-[hsl(10,100%,10%)]

box shadow

box-shadow: 0 4px 6px -1px hsl(10, 100%, 10%, 0.4);

css variable

--color-primary: hsl(10, 100%, 10%);

Related Colors

Use Cases for Very Dark Red

Alerts & errors Call-to-action buttons Brand logos Sale badges Warning messages

Frequently Asked Questions

What are all the color codes for HSL(10, 100%, 10%)?

HEX: #330900 | RGB: rgb(51, 9, 0) | CMYK: 0%, 82%, 100%, 80% | HSV: 11°, 100%, 20%. Copy any format from the conversion table above.

What colors go well with #330900?

The complementary color is HSL(190, 100%, 10%). For a triadic harmony, use hues 10°, 130°, and 250°. For analogous combinations, try hues 340° and 40°. See the Color Harmony section above for complete palettes with previews.

How do I use HSL(10, 100%, 10%) in CSS?

As HSL: color: hsl(10, 100%, 10%); — As HEX: color: #330900; — As RGB: color: rgb(51, 9, 0); — Tailwind CSS: bg-[hsl(10,100%,10%)] — CSS variable: --color-primary: hsl(10, 100%, 10%);