#90fb98 Color
Color Codes | |
---|---|
Hex Code | #90fb98 |
RGB Code | rgb(144, 251, 152) |
HSL Code | hsl(124, 93%, 77%) |
#90fb98 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(144, 251, 152); }
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(124, 93%, 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 #90fb98
RGB Code | Hex Code | Preview |
---|---|---|
rgb(144, 251, 152, 10%) | #90fb981a | |
rgb(144, 251, 152, 20%) | #90fb9833 | |
rgb(144, 251, 152, 40%) | #90fb984C | |
rgb(144, 251, 152, 60%) | #90fb9899 | |
rgb(144, 251, 152, 80%) | #90fb98CC | |
rgb(144, 251, 152, 100%) | #90fb98FF |
Saturated and desaturated colors of #90fb98
HSL Code | Preview |
---|---|
hsl(124, 10%, 77%) | |
hsl(124, 20%, 77%) | |
hsl(124, 40%, 77%) | |
hsl(124, 60%, 77%) | |
hsl(124, 80%, 77%) | |
hsl(124, 100%, 77%) |
#90fb98 Color Usage In CSS
body { color: #90fb98; } p { color: rgb(144, 251, 152); } header { border-bottom:1px solid #90fb98; }