#24ecc2 Color
Color Codes | |
---|---|
Hex Code | #24ecc2 |
RGB Code | rgb(36, 236, 194) |
HSL Code | hsl(167, 84%, 53%) |
#24ecc2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(36, 236, 194); }
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(167, 84%, 53%); }
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 #24ecc2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(36, 236, 194, 10%) | #24ecc21a | |
rgb(36, 236, 194, 20%) | #24ecc233 | |
rgb(36, 236, 194, 40%) | #24ecc24C | |
rgb(36, 236, 194, 60%) | #24ecc299 | |
rgb(36, 236, 194, 80%) | #24ecc2CC | |
rgb(36, 236, 194, 100%) | #24ecc2FF |
Saturated and desaturated colors of #24ecc2
HSL Code | Preview |
---|---|
hsl(167, 10%, 53%) | |
hsl(167, 20%, 53%) | |
hsl(167, 40%, 53%) | |
hsl(167, 60%, 53%) | |
hsl(167, 80%, 53%) | |
hsl(167, 100%, 53%) |
#24ecc2 Color Usage In CSS
body { color: #24ecc2; } p { color: rgb(36, 236, 194); } header { border-bottom:1px solid #24ecc2; }