#01cd86 Color
Color Codes | |
---|---|
Hex Code | #01cd86 |
RGB Code | rgb(01, 205, 134) |
HSL Code | hsl(159, 99%, 40%) |
#01cd86 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(01, 205, 134); }
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(159, 99%, 40%); }
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 #01cd86
RGB Code | Hex Code | Preview |
---|---|---|
rgb(01, 205, 134, 10%) | #01cd861a | |
rgb(01, 205, 134, 20%) | #01cd8633 | |
rgb(01, 205, 134, 40%) | #01cd864C | |
rgb(01, 205, 134, 60%) | #01cd8699 | |
rgb(01, 205, 134, 80%) | #01cd86CC | |
rgb(01, 205, 134, 100%) | #01cd86FF |
Saturated and desaturated colors of #01cd86
HSL Code | Preview |
---|---|
hsl(159, 10%, 40%) | |
hsl(159, 20%, 40%) | |
hsl(159, 40%, 40%) | |
hsl(159, 60%, 40%) | |
hsl(159, 80%, 40%) | |
hsl(159, 100%, 40%) |
#01cd86 Color Usage In CSS
body { color: #01cd86; } p { color: rgb(01, 205, 134); } header { border-bottom:1px solid #01cd86; }