#93dfb2 Color
Color Codes | |
---|---|
Hex Code | #93dfb2 |
RGB Code | rgb(147, 223, 178) |
HSL Code | hsl(144, 54%, 73%) |
#93dfb2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(147, 223, 178); }
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(144, 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 #93dfb2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(147, 223, 178, 10%) | #93dfb21a | |
rgb(147, 223, 178, 20%) | #93dfb233 | |
rgb(147, 223, 178, 40%) | #93dfb24C | |
rgb(147, 223, 178, 60%) | #93dfb299 | |
rgb(147, 223, 178, 80%) | #93dfb2CC | |
rgb(147, 223, 178, 100%) | #93dfb2FF |
Saturated and desaturated colors of #93dfb2
HSL Code | Preview |
---|---|
hsl(144, 10%, 73%) | |
hsl(144, 20%, 73%) | |
hsl(144, 40%, 73%) | |
hsl(144, 60%, 73%) | |
hsl(144, 80%, 73%) | |
hsl(144, 100%, 73%) |
#93dfb2 Color Usage In CSS
body { color: #93dfb2; } p { color: rgb(147, 223, 178); } header { border-bottom:1px solid #93dfb2; }