#24d3d6 Color
Color Codes | |
---|---|
Hex Code | #24d3d6 |
RGB Code | rgb(36, 211, 214) |
HSL Code | hsl(181, 71%, 49%) |
#24d3d6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(36, 211, 214); }
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, 71%, 49%); }
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 #24d3d6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(36, 211, 214, 10%) | #24d3d61a | |
rgb(36, 211, 214, 20%) | #24d3d633 | |
rgb(36, 211, 214, 40%) | #24d3d64C | |
rgb(36, 211, 214, 60%) | #24d3d699 | |
rgb(36, 211, 214, 80%) | #24d3d6CC | |
rgb(36, 211, 214, 100%) | #24d3d6FF |
Saturated and desaturated colors of #24d3d6
HSL Code | Preview |
---|---|
hsl(181, 10%, 49%) | |
hsl(181, 20%, 49%) | |
hsl(181, 40%, 49%) | |
hsl(181, 60%, 49%) | |
hsl(181, 80%, 49%) | |
hsl(181, 100%, 49%) |
#24d3d6 Color Usage In CSS
body { color: #24d3d6; } p { color: rgb(36, 211, 214); } header { border-bottom:1px solid #24d3d6; }