#90d125 Color
Color Codes | |
---|---|
Hex Code | #90d125 |
RGB Code | rgb(144, 209, 37) |
HSL Code | hsl(83, 70%, 48%) |
#90d125 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(144, 209, 37); }
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(83, 70%, 48%); }
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 #90d125
RGB Code | Hex Code | Preview |
---|---|---|
rgb(144, 209, 37, 10%) | #90d1251a | |
rgb(144, 209, 37, 20%) | #90d12533 | |
rgb(144, 209, 37, 40%) | #90d1254C | |
rgb(144, 209, 37, 60%) | #90d12599 | |
rgb(144, 209, 37, 80%) | #90d125CC | |
rgb(144, 209, 37, 100%) | #90d125FF |
Saturated and desaturated colors of #90d125
HSL Code | Preview |
---|---|
hsl(83, 10%, 48%) | |
hsl(83, 20%, 48%) | |
hsl(83, 40%, 48%) | |
hsl(83, 60%, 48%) | |
hsl(83, 80%, 48%) | |
hsl(83, 100%, 48%) |
#90d125 Color Usage In CSS
body { color: #90d125; } p { color: rgb(144, 209, 37); } header { border-bottom:1px solid #90d125; }