#24d7de Color
Color Codes | |
---|---|
Hex Code | #24d7de |
RGB Code | rgb(36, 215, 222) |
HSL Code | hsl(182, 74%, 51%) |
#24d7de Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(36, 215, 222); }
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(182, 74%, 51%); }
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 #24d7de
RGB Code | Hex Code | Preview |
---|---|---|
rgb(36, 215, 222, 10%) | #24d7de1a | |
rgb(36, 215, 222, 20%) | #24d7de33 | |
rgb(36, 215, 222, 40%) | #24d7de4C | |
rgb(36, 215, 222, 60%) | #24d7de99 | |
rgb(36, 215, 222, 80%) | #24d7deCC | |
rgb(36, 215, 222, 100%) | #24d7deFF |
Saturated and desaturated colors of #24d7de
HSL Code | Preview |
---|---|
hsl(182, 10%, 51%) | |
hsl(182, 20%, 51%) | |
hsl(182, 40%, 51%) | |
hsl(182, 60%, 51%) | |
hsl(182, 80%, 51%) | |
hsl(182, 100%, 51%) |
#24d7de Color Usage In CSS
body { color: #24d7de; } p { color: rgb(36, 215, 222); } header { border-bottom:1px solid #24d7de; }