HSL(120, 64%, 85%)

Green — Green color

Adjust Color

Color Information

Color Name

Green

Color Family

Green

Warm / Cool

🔵 Cool

Temperature

5000K

CSS Class

bg-[hsl(120,64%,85%)]

Color Conversions

Format Value CSS Usage
HSL hsl(120, 64%, 85%) color: hsl(120, 64%, 85%)
HEX #C0F1C0 color: #C0F1C0
RGB rgb(192, 241, 192) color: rgb(192, 241, 192)
CMYK cmyk(20%, 0%, 20%, 5%)
HSV hsv(120, 20%, 95%)
HWB hwb(120 76% 5%) color: hwb(120 76% 5%)
OKLCH oklch(0.9113 0.083 144.86) color: oklch(0.9113 0.083 144.86)
Lab lab(90.74 -24.83 18.63) color: lab(90.74 -24.83 18.63)
LCH lch(90.74 31.04 143.12) color: lch(90.74 31.04 143.12)

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 1.27:1
vs Black 16.58: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)

#D5D6CC — rgb(213, 214, 204)

Deuteranopia (Green-blind)

#D2CFCF — rgb(210, 207, 207)

Tritanopia (Blue-blind)

#C2D5D7 — rgb(194, 213, 215)

Tints & Shades

Tints (Lighter →)

← Shades (Darker)

Saturation (0% → 100%)

CSS Code Snippets

background

background-color: hsl(120, 64%, 85%);

text

color: hsl(120, 64%, 85%);

border

border: 2px solid hsl(120, 64%, 85%);

gradient light

background: linear-gradient(to right, hsl(120, 64%, 100%), hsl(120, 64%, 85%));

gradient dark

background: linear-gradient(to right, hsl(120, 64%, 85%), hsl(120, 64%, 65%))

hex

background-color: #C0F1C0;

tailwind

bg-[hsl(120,64%,85%)]

box shadow

box-shadow: 0 4px 6px -1px hsl(120, 64%, 85%, 0.4);

css variable

--color-primary: hsl(120, 64%, 85%);

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(120, 64%, 85%)?

HEX: #C0F1C0 | RGB: rgb(192, 241, 192) | CMYK: 20%, 0%, 20%, 5% | HSV: 120°, 20%, 95%. Copy any format from the conversion table above.

What colors go well with #C0F1C0?

The complementary color is HSL(300, 64%, 85%). For a triadic harmony, use hues 120°, 240°, and 0°. For analogous combinations, try hues 90° and 150°. See the Color Harmony section above for complete palettes with previews.

How do I use HSL(120, 64%, 85%) in CSS?

As HSL: color: hsl(120, 64%, 85%); — As HEX: color: #C0F1C0; — As RGB: color: rgb(192, 241, 192); — Tailwind CSS: bg-[hsl(120,64%,85%)] — CSS variable: --color-primary: hsl(120, 64%, 85%);