#0a8557 Color
Color Codes | |
---|---|
Hex Code | #0a8557 |
RGB Code | rgb(10, 133, 87) |
HSL Code | hsl(158, 86%, 28%) |
#0a8557 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(10, 133, 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(158, 86%, 28%); }
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 #0a8557
RGB Code | Hex Code | Preview |
---|---|---|
rgb(10, 133, 87, 10%) | #0a85571a | |
rgb(10, 133, 87, 20%) | #0a855733 | |
rgb(10, 133, 87, 40%) | #0a85574C | |
rgb(10, 133, 87, 60%) | #0a855799 | |
rgb(10, 133, 87, 80%) | #0a8557CC | |
rgb(10, 133, 87, 100%) | #0a8557FF |
Saturated and desaturated colors of #0a8557
HSL Code | Preview |
---|---|
hsl(158, 10%, 28%) | |
hsl(158, 20%, 28%) | |
hsl(158, 40%, 28%) | |
hsl(158, 60%, 28%) | |
hsl(158, 80%, 28%) | |
hsl(158, 100%, 28%) |
#0a8557 Color Usage In CSS
body { color: #0a8557; } p { color: rgb(10, 133, 87); } header { border-bottom:1px solid #0a8557; }