#01a03d Color
Color Codes | |
---|---|
Hex Code | #01a03d |
RGB Code | rgb(01, 160, 61) |
HSL Code | hsl(143, 99%, 32%) |
#01a03d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(01, 160, 61); }
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(143, 99%, 32%); }
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 #01a03d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(01, 160, 61, 10%) | #01a03d1a | |
rgb(01, 160, 61, 20%) | #01a03d33 | |
rgb(01, 160, 61, 40%) | #01a03d4C | |
rgb(01, 160, 61, 60%) | #01a03d99 | |
rgb(01, 160, 61, 80%) | #01a03dCC | |
rgb(01, 160, 61, 100%) | #01a03dFF |
Saturated and desaturated colors of #01a03d
HSL Code | Preview |
---|---|
hsl(143, 10%, 32%) | |
hsl(143, 20%, 32%) | |
hsl(143, 40%, 32%) | |
hsl(143, 60%, 32%) | |
hsl(143, 80%, 32%) | |
hsl(143, 100%, 32%) |
#01a03d Color Usage In CSS
body { color: #01a03d; } p { color: rgb(01, 160, 61); } header { border-bottom:1px solid #01a03d; }