#63cdcf Color
Color Codes | |
---|---|
Hex Code | #63cdcf |
RGB Code | rgb(99, 205, 207) |
HSL Code | hsl(181, 53%, 60%) |
#63cdcf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(99, 205, 207); }
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(181, 53%, 60%); }
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 #63cdcf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(99, 205, 207, 10%) | #63cdcf1a | |
rgb(99, 205, 207, 20%) | #63cdcf33 | |
rgb(99, 205, 207, 40%) | #63cdcf4C | |
rgb(99, 205, 207, 60%) | #63cdcf99 | |
rgb(99, 205, 207, 80%) | #63cdcfCC | |
rgb(99, 205, 207, 100%) | #63cdcfFF |
Saturated and desaturated colors of #63cdcf
HSL Code | Preview |
---|---|
hsl(181, 10%, 60%) | |
hsl(181, 20%, 60%) | |
hsl(181, 40%, 60%) | |
hsl(181, 60%, 60%) | |
hsl(181, 80%, 60%) | |
hsl(181, 100%, 60%) |
#63cdcf Color Usage In CSS
body { color: #63cdcf; } p { color: rgb(99, 205, 207); } header { border-bottom:1px solid #63cdcf; }