#94d64f Color
Color Codes | |
---|---|
Hex Code | #94d64f |
RGB Code | rgb(148, 214, 79) |
HSL Code | hsl(89, 62%, 57%) |
#94d64f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(148, 214, 79); }
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(89, 62%, 57%); }
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 #94d64f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(148, 214, 79, 10%) | #94d64f1a | |
rgb(148, 214, 79, 20%) | #94d64f33 | |
rgb(148, 214, 79, 40%) | #94d64f4C | |
rgb(148, 214, 79, 60%) | #94d64f99 | |
rgb(148, 214, 79, 80%) | #94d64fCC | |
rgb(148, 214, 79, 100%) | #94d64fFF |
Saturated and desaturated colors of #94d64f
HSL Code | Preview |
---|---|
hsl(89, 10%, 57%) | |
hsl(89, 20%, 57%) | |
hsl(89, 40%, 57%) | |
hsl(89, 60%, 57%) | |
hsl(89, 80%, 57%) | |
hsl(89, 100%, 57%) |
#94d64f Color Usage In CSS
body { color: #94d64f; } p { color: rgb(148, 214, 79); } header { border-bottom:1px solid #94d64f; }