#01ddce Color
Color Codes | |
---|---|
Hex Code | #01ddce |
RGB Code | rgb(01, 221, 206) |
HSL Code | hsl(176, 99%, 44%) |
#01ddce Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(01, 221, 206); }
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(176, 99%, 44%); }
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 #01ddce
RGB Code | Hex Code | Preview |
---|---|---|
rgb(01, 221, 206, 10%) | #01ddce1a | |
rgb(01, 221, 206, 20%) | #01ddce33 | |
rgb(01, 221, 206, 40%) | #01ddce4C | |
rgb(01, 221, 206, 60%) | #01ddce99 | |
rgb(01, 221, 206, 80%) | #01ddceCC | |
rgb(01, 221, 206, 100%) | #01ddceFF |
Saturated and desaturated colors of #01ddce
HSL Code | Preview |
---|---|
hsl(176, 10%, 44%) | |
hsl(176, 20%, 44%) | |
hsl(176, 40%, 44%) | |
hsl(176, 60%, 44%) | |
hsl(176, 80%, 44%) | |
hsl(176, 100%, 44%) |
#01ddce Color Usage In CSS
body { color: #01ddce; } p { color: rgb(01, 221, 206); } header { border-bottom:1px solid #01ddce; }