#94db06 Color
Color Codes | |
---|---|
Hex Code | #94db06 |
RGB Code | rgb(148, 219, 06) |
HSL Code | hsl(80, 95%, 44%) |
#94db06 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(148, 219, 06); }
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(80, 95%, 44%); }
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 #94db06
RGB Code | Hex Code | Preview |
---|---|---|
rgb(148, 219, 06, 10%) | #94db061a | |
rgb(148, 219, 06, 20%) | #94db0633 | |
rgb(148, 219, 06, 40%) | #94db064C | |
rgb(148, 219, 06, 60%) | #94db0699 | |
rgb(148, 219, 06, 80%) | #94db06CC | |
rgb(148, 219, 06, 100%) | #94db06FF |
Saturated and desaturated colors of #94db06
HSL Code | Preview |
---|---|
hsl(80, 10%, 44%) | |
hsl(80, 20%, 44%) | |
hsl(80, 40%, 44%) | |
hsl(80, 60%, 44%) | |
hsl(80, 80%, 44%) | |
hsl(80, 100%, 44%) |
#94db06 Color Usage In CSS
body { color: #94db06; } p { color: rgb(148, 219, 06); } header { border-bottom:1px solid #94db06; }