HSL(70, 100%, 30%)

Green — Green color

Adjust Color

Color Information

Color Name

Green

Color Family

Green

Warm / Cool

🔵 Cool

Temperature

3500K

CSS Class

bg-[hsl(70,100%,30%)]

Color Conversions

Format Value CSS Usage
HSL hsl(70, 100%, 30%) color: hsl(70, 100%, 30%)
HEX #809900 color: #809900
RGB rgb(128, 153, 0) color: rgb(128, 153, 0)
CMYK cmyk(16%, 0%, 100%, 40%)
HSV hsv(70, 100%, 60%)
HWB hwb(70 0% 40%) color: hwb(70 0% 40%)
OKLCH oklch(0.6405 0.153 120.59) color: oklch(0.6405 0.153 120.59)
Lab lab(59.32 -25.8 62.2) color: lab(59.32 -25.8 62.2)
LCH lch(59.32 67.34 112.53) color: lch(59.32 67.34 112.53)

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 3.24:1
vs Black 6.47:1

AA Normal (4.5:1)

on White: FAIL ✗ on Black: PASS ✓

AA Large (3:1)

on White: PASS ✓ on Black: PASS ✓

AAA Normal (7:1)

on White: FAIL ✗

Best text on this color: black

Color Blindness Simulation

Protanopia (Red-blind)

#8B8B25 — rgb(139, 139, 37)

Deuteranopia (Green-blind)

#89882E — rgb(137, 136, 46)

Tritanopia (Blue-blind)

#814249 — rgb(129, 66, 73)

Tints & Shades

Tints (Lighter →)

← Shades (Darker)

Saturation (0% → 100%)

CSS Code Snippets

background

background-color: hsl(70, 100%, 30%);

text

color: hsl(70, 100%, 30%);

border

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

gradient light

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

gradient dark

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

hex

background-color: #809900;

tailwind

bg-[hsl(70,100%,30%)]

box shadow

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

css variable

--color-primary: hsl(70, 100%, 30%);

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(70, 100%, 30%)?

HEX: #809900 | RGB: rgb(128, 153, 0) | CMYK: 16%, 0%, 100%, 40% | HSV: 70°, 100%, 60%. Copy any format from the conversion table above.

What colors go well with #809900?

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

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

As HSL: color: hsl(70, 100%, 30%); — As HEX: color: #809900; — As RGB: color: rgb(128, 153, 0); — Tailwind CSS: bg-[hsl(70,100%,30%)] — CSS variable: --color-primary: hsl(70, 100%, 30%);