#90c114 Color
Color Codes | |
---|---|
Hex Code | #90c114 |
RGB Code | rgb(144, 193, 20) |
HSL Code | hsl(77, 81%, 42%) |
#90c114 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(144, 193, 20); }
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(77, 81%, 42%); }
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 #90c114
RGB Code | Hex Code | Preview |
---|---|---|
rgb(144, 193, 20, 10%) | #90c1141a | |
rgb(144, 193, 20, 20%) | #90c11433 | |
rgb(144, 193, 20, 40%) | #90c1144C | |
rgb(144, 193, 20, 60%) | #90c11499 | |
rgb(144, 193, 20, 80%) | #90c114CC | |
rgb(144, 193, 20, 100%) | #90c114FF |
Saturated and desaturated colors of #90c114
HSL Code | Preview |
---|---|
hsl(77, 10%, 42%) | |
hsl(77, 20%, 42%) | |
hsl(77, 40%, 42%) | |
hsl(77, 60%, 42%) | |
hsl(77, 80%, 42%) | |
hsl(77, 100%, 42%) |
#90c114 Color Usage In CSS
body { color: #90c114; } p { color: rgb(144, 193, 20); } header { border-bottom:1px solid #90c114; }