#98e69f Color
Color Codes | |
---|---|
Hex Code | #98e69f |
RGB Code | rgb(152, 230, 159) |
HSL Code | hsl(125, 61%, 75%) |
#98e69f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(152, 230, 159); }
R(red), G(green), B(blue) can be number between 0-255.
A parameter is a hex characters (0–9, A–F) and optional.
hsl()
hsl(hue saturation lightness); hsl(hue saturation lightness / alpha); div { background-color: hsl(125, 61%, 75%); }
Saturation value is a percentage value between 0% unsaturated and 100% fully saturated.
Lightness value is a percentage value between 100% is white and 0% is black.
Lighter and darker colors of #98e69f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(152, 230, 159, 10%) | #98e69f1a | |
rgb(152, 230, 159, 20%) | #98e69f33 | |
rgb(152, 230, 159, 40%) | #98e69f4C | |
rgb(152, 230, 159, 60%) | #98e69f99 | |
rgb(152, 230, 159, 80%) | #98e69fCC | |
rgb(152, 230, 159, 100%) | #98e69fFF |
Saturated and desaturated colors of #98e69f
HSL Code | Preview |
---|---|
hsl(125, 10%, 75%) | |
hsl(125, 20%, 75%) | |
hsl(125, 40%, 75%) | |
hsl(125, 60%, 75%) | |
hsl(125, 80%, 75%) | |
hsl(125, 100%, 75%) |
#98e69f Color Usage In CSS
body { color: #98e69f; } p { color: rgb(152, 230, 159); } header { border-bottom:1px solid #98e69f; }