HSL(80, 45%, 55%)

Green — Green color

Adjust Color

Color Information

Color Name

Green

Color Family

Green

Warm / Cool

🔵 Cool

Temperature

3500K

CSS Class

bg-[hsl(80,45%,55%)]

Color Conversions

Format Value CSS Usage
HSL hsl(80, 45%, 55%) color: hsl(80, 45%, 55%)
HEX #9DC059 color: #9DC059
RGB rgb(157, 192, 89) color: rgb(157, 192, 89)
CMYK cmyk(18%, 0%, 54%, 25%)
HSV hsv(80, 54%, 75%)
HWB hwb(80 35% 25%) color: hwb(80 35% 25%)
OKLCH oklch(0.76 0.1369 125.13) color: oklch(0.76 0.1369 125.13)
Lab lab(73.28 -27.95 47.45) color: lab(73.28 -27.95 47.45)
LCH lch(73.28 55.07 120.5) color: lch(73.28 55.07 120.5)

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 2.08:1
vs Black 10.12:1

AA Normal (4.5:1)

on White: FAIL ✗ on Black: PASS ✓

AA Large (3:1)

on White: FAIL ✗ on Black: PASS ✓

AAA Normal (7:1)

on White: FAIL ✗

Best text on this color: black

Color Blindness Simulation

Protanopia (Red-blind)

#ACAC72 — rgb(172, 172, 114)

Deuteranopia (Green-blind)

#AAA878 — rgb(170, 168, 120)

Tritanopia (Blue-blind)

#9F868A — rgb(159, 134, 138)

Tints & Shades

Tints (Lighter →)

← Shades (Darker)

Saturation (0% → 100%)

CSS Code Snippets

background

background-color: hsl(80, 45%, 55%);

text

color: hsl(80, 45%, 55%);

border

border: 2px solid hsl(80, 45%, 55%);

gradient light

background: linear-gradient(to right, hsl(80, 45%, 75%), hsl(80, 45%, 55%));

gradient dark

background: linear-gradient(to right, hsl(80, 45%, 55%), hsl(80, 45%, 35%))

hex

background-color: #9DC059;

tailwind

bg-[hsl(80,45%,55%)]

box shadow

box-shadow: 0 4px 6px -1px hsl(80, 45%, 55%, 0.4);

css variable

--color-primary: hsl(80, 45%, 55%);

Related Colors

Use Cases for Green

Success states Eco/nature brands Finance apps Health apps Confirm buttons

Frequently Asked Questions

What are all the color codes for HSL(80, 45%, 55%)?

HEX: #9DC059 | RGB: rgb(157, 192, 89) | CMYK: 18%, 0%, 54%, 25% | HSV: 80°, 54%, 75%. Copy any format from the conversion table above.

What colors go well with #9DC059?

The complementary color is HSL(260, 45%, 55%). For a triadic harmony, use hues 80°, 200°, and 320°. For analogous combinations, try hues 50° and 110°. See the Color Harmony section above for complete palettes with previews.

How do I use HSL(80, 45%, 55%) in CSS?

As HSL: color: hsl(80, 45%, 55%); — As HEX: color: #9DC059; — As RGB: color: rgb(157, 192, 89); — Tailwind CSS: bg-[hsl(80,45%,55%)] — CSS variable: --color-primary: hsl(80, 45%, 55%);