#93dfcd Color
Color Codes | |
---|---|
Hex Code | #93dfcd |
RGB Code | rgb(147, 223, 205) |
HSL Code | hsl(166, 54%, 73%) |
#93dfcd Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(147, 223, 205); }
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(166, 54%, 73%); }
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 #93dfcd
RGB Code | Hex Code | Preview |
---|---|---|
rgb(147, 223, 205, 10%) | #93dfcd1a | |
rgb(147, 223, 205, 20%) | #93dfcd33 | |
rgb(147, 223, 205, 40%) | #93dfcd4C | |
rgb(147, 223, 205, 60%) | #93dfcd99 | |
rgb(147, 223, 205, 80%) | #93dfcdCC | |
rgb(147, 223, 205, 100%) | #93dfcdFF |
Saturated and desaturated colors of #93dfcd
HSL Code | Preview |
---|---|
hsl(166, 10%, 73%) | |
hsl(166, 20%, 73%) | |
hsl(166, 40%, 73%) | |
hsl(166, 60%, 73%) | |
hsl(166, 80%, 73%) | |
hsl(166, 100%, 73%) |
#93dfcd Color Usage In CSS
body { color: #93dfcd; } p { color: rgb(147, 223, 205); } header { border-bottom:1px solid #93dfcd; }