#94fb10 Color
Color Codes | |
---|---|
Hex Code | #94fb10 |
RGB Code | rgb(148, 251, 16) |
HSL Code | hsl(86, 97%, 52%) |
#94fb10 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(148, 251, 16); }
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(86, 97%, 52%); }
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 #94fb10
RGB Code | Hex Code | Preview |
---|---|---|
rgb(148, 251, 16, 10%) | #94fb101a | |
rgb(148, 251, 16, 20%) | #94fb1033 | |
rgb(148, 251, 16, 40%) | #94fb104C | |
rgb(148, 251, 16, 60%) | #94fb1099 | |
rgb(148, 251, 16, 80%) | #94fb10CC | |
rgb(148, 251, 16, 100%) | #94fb10FF |
Saturated and desaturated colors of #94fb10
HSL Code | Preview |
---|---|
hsl(86, 10%, 52%) | |
hsl(86, 20%, 52%) | |
hsl(86, 40%, 52%) | |
hsl(86, 60%, 52%) | |
hsl(86, 80%, 52%) | |
hsl(86, 100%, 52%) |
#94fb10 Color Usage In CSS
body { color: #94fb10; } p { color: rgb(148, 251, 16); } header { border-bottom:1px solid #94fb10; }