#94c728 Color
Color Codes | |
---|---|
Hex Code | #94c728 |
RGB Code | rgb(148, 199, 40) |
HSL Code | hsl(79, 67%, 47%) |
#94c728 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(148, 199, 40); }
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(79, 67%, 47%); }
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 #94c728
RGB Code | Hex Code | Preview |
---|---|---|
rgb(148, 199, 40, 10%) | #94c7281a | |
rgb(148, 199, 40, 20%) | #94c72833 | |
rgb(148, 199, 40, 40%) | #94c7284C | |
rgb(148, 199, 40, 60%) | #94c72899 | |
rgb(148, 199, 40, 80%) | #94c728CC | |
rgb(148, 199, 40, 100%) | #94c728FF |
Saturated and desaturated colors of #94c728
HSL Code | Preview |
---|---|
hsl(79, 10%, 47%) | |
hsl(79, 20%, 47%) | |
hsl(79, 40%, 47%) | |
hsl(79, 60%, 47%) | |
hsl(79, 80%, 47%) | |
hsl(79, 100%, 47%) |
#94c728 Color Usage In CSS
body { color: #94c728; } p { color: rgb(148, 199, 40); } header { border-bottom:1px solid #94c728; }