HSL(123, 50%, 75%)
Green — Green color
Adjust Color
Color Information
Color Name
Green
Color Family
Green
Warm / Cool
🔵 Cool
Temperature
5000K
CSS Class
bg-[hsl(123,50%,75%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(123, 50%, 75%) | color: hsl(123, 50%, 75%) | |
| HEX | #9FDFA3 | color: #9FDFA3 | |
| RGB | rgb(159, 223, 163) | color: rgb(159, 223, 163) | |
| CMYK | cmyk(29%, 0%, 27%, 13%) | — | |
| HSV | hsv(124, 29%, 87%) | — | |
| HWB | hwb(124 62% 13%) | color: hwb(124 62% 13%) | |
| OKLCH | oklch(0.845 0.1051 146.11) | color: oklch(0.845 0.1051 146.11) | |
| Lab | lab(83.33 -31.94 23.09) | color: lab(83.33 -31.94 23.09) | |
| LCH | lch(83.33 39.41 144.14) | color: lch(83.33 39.41 144.14) |
Color Theory
Accessibility (WCAG)
White text on color
Black text on color
Colored text
Contrast Ratios
AA Normal (4.5:1)
AA Large (3:1)
AAA Normal (7:1)
Best text on this color: black
Color Blindness Simulation
Protanopia (Red-blind)
#BBBBB2 — rgb(187, 187, 178)
Deuteranopia (Green-blind)
#B7B2B5 — rgb(183, 178, 181)
Tritanopia (Blue-blind)
#A2BDC0 — rgb(162, 189, 192)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(123, 50%, 75%);
text
color: hsl(123, 50%, 75%);
border
border: 2px solid hsl(123, 50%, 75%);
gradient light
background: linear-gradient(to right, hsl(123, 50%, 95%), hsl(123, 50%, 75%));
gradient dark
background: linear-gradient(to right, hsl(123, 50%, 75%), hsl(123, 50%, 55%))
hex
background-color: #9FDFA3;
tailwind
bg-[hsl(123,50%,75%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(123, 50%, 75%, 0.4);
css variable
--color-primary: hsl(123, 50%, 75%);
Related Colors
Use Cases for Green
Frequently Asked Questions
What are all the color codes for HSL(123, 50%, 75%)?
HEX: #9FDFA3 | RGB: rgb(159, 223, 163) | CMYK: 29%, 0%, 27%, 13% | HSV: 124°, 29%, 87%. Copy any format from the conversion table above.
What colors go well with #9FDFA3?
The complementary color is HSL(303, 50%, 75%). For a triadic harmony, use hues 123°, 243°, and 3°. For analogous combinations, try hues 93° and 153°. See the Color Harmony section above for complete palettes with previews.
How do I use HSL(123, 50%, 75%) in CSS?
As HSL: color: hsl(123, 50%, 75%); — As HEX: color: #9FDFA3; — As RGB: color: rgb(159, 223, 163); — Tailwind CSS: bg-[hsl(123,50%,75%)] — CSS variable: --color-primary: hsl(123, 50%, 75%);