HSL(100, 100%, 75%)
Green — Green color
Adjust Color
Color Information
Color Name
Green
Color Family
Green
Warm / Cool
🔵 Cool
Temperature
5000K
CSS Class
bg-[hsl(100,100%,75%)]
Color Conversions
| Format | Value | CSS Usage | |
|---|---|---|---|
| HSL | hsl(100, 100%, 75%) | color: hsl(100, 100%, 75%) | |
| HEX | #AAFF80 | color: #AAFF80 | |
| RGB | rgb(170, 255, 128) | color: rgb(170, 255, 128) | |
| CMYK | cmyk(33%, 0%, 50%, 0%) | — | |
| HSV | hsv(100, 50%, 100%) | — | |
| HWB | hwb(100 50% 0%) | color: hwb(100 50% 0%) | |
| OKLCH | oklch(0.9183 0.1812 136.24) | color: oklch(0.9183 0.1812 136.24) | |
| Lab | lab(92.41 -47.53 52.28) | color: lab(92.41 -47.53 52.28) | |
| LCH | lch(92.41 70.66 132.28) | color: lch(92.41 70.66 132.28) |
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)
#CFD09F — rgb(207, 208, 159)
Deuteranopia (Green-blind)
#CAC4A6 — rgb(202, 196, 166)
Tritanopia (Blue-blind)
#AEB7BC — rgb(174, 183, 188)
Tints & Shades
CSS Code Snippets
background
background-color: hsl(100, 100%, 75%);
text
color: hsl(100, 100%, 75%);
border
border: 2px solid hsl(100, 100%, 75%);
gradient light
background: linear-gradient(to right, hsl(100, 100%, 95%), hsl(100, 100%, 75%));
gradient dark
background: linear-gradient(to right, hsl(100, 100%, 75%), hsl(100, 100%, 55%))
hex
background-color: #AAFF80;
tailwind
bg-[hsl(100,100%,75%)]
box shadow
box-shadow: 0 4px 6px -1px hsl(100, 100%, 75%, 0.4);
css variable
--color-primary: hsl(100, 100%, 75%);
Related Colors
Use Cases for Green
Frequently Asked Questions
What are all the color codes for HSL(100, 100%, 75%)?
HEX: #AAFF80 | RGB: rgb(170, 255, 128) | CMYK: 33%, 0%, 50%, 0% | HSV: 100°, 50%, 100%. Copy any format from the conversion table above.
What colors go well with #AAFF80?
The complementary color is HSL(280, 100%, 75%). For a triadic harmony, use hues 100°, 220°, and 340°. For analogous combinations, try hues 70° and 130°. See the Color Harmony section above for complete palettes with previews.
How do I use HSL(100, 100%, 75%) in CSS?
As HSL: color: hsl(100, 100%, 75%); — As HEX: color: #AAFF80; — As RGB: color: rgb(170, 255, 128); — Tailwind CSS: bg-[hsl(100,100%,75%)] — CSS variable: --color-primary: hsl(100, 100%, 75%);