HSL(15, 100%, 25%)

Orange — Orange color

Adjust Color

Color Information

Color Name

Orange

Color Family

Orange

Warm / Cool

🔴 Warm

Temperature

2000K

CSS Class

bg-[hsl(15,100%,25%)]

Color Conversions

Format Value CSS Usage
HSL hsl(15, 100%, 25%) color: hsl(15, 100%, 25%)
HEX #802000 color: #802000
RGB rgb(128, 32, 0) color: rgb(128, 32, 0)
CMYK cmyk(0%, 75%, 100%, 50%)
HSV hsv(15, 100%, 50%)
HWB hwb(15 0% 50%) color: hwb(15 0% 50%)
OKLCH oklch(0.3983 0.1358 36.2) color: oklch(0.3983 0.1358 36.2)
Lab lab(28.44 39.82 40.61) color: lab(28.44 39.82 40.61)
LCH lch(28.44 56.88 45.56) color: lch(28.44 56.88 45.56)

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 9.88:1
vs Black 2.12: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)

#565608 — rgb(86, 86, 8)

Deuteranopia (Green-blind)

#5C630A — rgb(92, 99, 10)

Tritanopia (Blue-blind)

#7B0E0F — rgb(123, 14, 15)

Tints & Shades

Tints (Lighter →)

← Shades (Darker)

Saturation (0% → 100%)

CSS Code Snippets

background

background-color: hsl(15, 100%, 25%);

text

color: hsl(15, 100%, 25%);

border

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

gradient light

background: linear-gradient(to right, hsl(15, 100%, 45%), hsl(15, 100%, 25%));

gradient dark

background: linear-gradient(to right, hsl(15, 100%, 25%), hsl(15, 100%, 5%))

hex

background-color: #802000;

tailwind

bg-[hsl(15,100%,25%)]

box shadow

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

css variable

--color-primary: hsl(15, 100%, 25%);

Related Colors

Use Cases for Orange

E-commerce CTAs Food & beverage branding Energetic UI elements Sale tags Sunset themes

Frequently Asked Questions

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

HEX: #802000 | RGB: rgb(128, 32, 0) | CMYK: 0%, 75%, 100%, 50% | HSV: 15°, 100%, 50%. Copy any format from the conversion table above.

What colors go well with #802000?

The complementary color is HSL(195, 100%, 25%). For a triadic harmony, use hues 15°, 135°, and 255°. For analogous combinations, try hues 345° and 45°. See the Color Harmony section above for complete palettes with previews.

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

As HSL: color: hsl(15, 100%, 25%); — As HEX: color: #802000; — As RGB: color: rgb(128, 32, 0); — Tailwind CSS: bg-[hsl(15,100%,25%)] — CSS variable: --color-primary: hsl(15, 100%, 25%);