#95c724 Color
Color Codes | |
---|---|
Hex Code | #95c724 |
RGB Code | rgb(149, 199, 36) |
HSL Code | hsl(78, 69%, 46%) |
#95c724 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(149, 199, 36); }
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(78, 69%, 46%); }
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 #95c724
RGB Code | Hex Code | Preview |
---|---|---|
rgb(149, 199, 36, 10%) | #95c7241a | |
rgb(149, 199, 36, 20%) | #95c72433 | |
rgb(149, 199, 36, 40%) | #95c7244C | |
rgb(149, 199, 36, 60%) | #95c72499 | |
rgb(149, 199, 36, 80%) | #95c724CC | |
rgb(149, 199, 36, 100%) | #95c724FF |
Saturated and desaturated colors of #95c724
HSL Code | Preview |
---|---|
hsl(78, 10%, 46%) | |
hsl(78, 20%, 46%) | |
hsl(78, 40%, 46%) | |
hsl(78, 60%, 46%) | |
hsl(78, 80%, 46%) | |
hsl(78, 100%, 46%) |
#95c724 Color Usage In CSS
body { color: #95c724; } p { color: rgb(149, 199, 36); } header { border-bottom:1px solid #95c724; }