#05a357 Color
Color Codes | |
---|---|
Hex Code | #05a357 |
RGB Code | rgb(05, 163, 87) |
HSL Code | hsl(151, 94%, 33%) |
#05a357 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(05, 163, 87); }
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(151, 94%, 33%); }
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 #05a357
RGB Code | Hex Code | Preview |
---|---|---|
rgb(05, 163, 87, 10%) | #05a3571a | |
rgb(05, 163, 87, 20%) | #05a35733 | |
rgb(05, 163, 87, 40%) | #05a3574C | |
rgb(05, 163, 87, 60%) | #05a35799 | |
rgb(05, 163, 87, 80%) | #05a357CC | |
rgb(05, 163, 87, 100%) | #05a357FF |
Saturated and desaturated colors of #05a357
HSL Code | Preview |
---|---|
hsl(151, 10%, 33%) | |
hsl(151, 20%, 33%) | |
hsl(151, 40%, 33%) | |
hsl(151, 60%, 33%) | |
hsl(151, 80%, 33%) | |
hsl(151, 100%, 33%) |
#05a357 Color Usage In CSS
body { color: #05a357; } p { color: rgb(05, 163, 87); } header { border-bottom:1px solid #05a357; }