#8afe95 Color
Color Codes | |
---|---|
Hex Code | #8afe95 |
RGB Code | rgb(138, 254, 149) |
HSL Code | hsl(126, 98%, 77%) |
#8afe95 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(138, 254, 149); }
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(126, 98%, 77%); }
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 #8afe95
RGB Code | Hex Code | Preview |
---|---|---|
rgb(138, 254, 149, 10%) | #8afe951a | |
rgb(138, 254, 149, 20%) | #8afe9533 | |
rgb(138, 254, 149, 40%) | #8afe954C | |
rgb(138, 254, 149, 60%) | #8afe9599 | |
rgb(138, 254, 149, 80%) | #8afe95CC | |
rgb(138, 254, 149, 100%) | #8afe95FF |
Saturated and desaturated colors of #8afe95
HSL Code | Preview |
---|---|
hsl(126, 10%, 77%) | |
hsl(126, 20%, 77%) | |
hsl(126, 40%, 77%) | |
hsl(126, 60%, 77%) | |
hsl(126, 80%, 77%) | |
hsl(126, 100%, 77%) |
#8afe95 Color Usage In CSS
body { color: #8afe95; } p { color: rgb(138, 254, 149); } header { border-bottom:1px solid #8afe95; }