#39dfed Color
Color Codes | |
---|---|
Hex Code | #39dfed |
RGB Code | rgb(57, 223, 237) |
HSL Code | hsl(185, 83%, 58%) |
#39dfed Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(57, 223, 237); }
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(185, 83%, 58%); }
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 #39dfed
RGB Code | Hex Code | Preview |
---|---|---|
rgb(57, 223, 237, 10%) | #39dfed1a | |
rgb(57, 223, 237, 20%) | #39dfed33 | |
rgb(57, 223, 237, 40%) | #39dfed4C | |
rgb(57, 223, 237, 60%) | #39dfed99 | |
rgb(57, 223, 237, 80%) | #39dfedCC | |
rgb(57, 223, 237, 100%) | #39dfedFF |
Saturated and desaturated colors of #39dfed
HSL Code | Preview |
---|---|
hsl(185, 10%, 58%) | |
hsl(185, 20%, 58%) | |
hsl(185, 40%, 58%) | |
hsl(185, 60%, 58%) | |
hsl(185, 80%, 58%) | |
hsl(185, 100%, 58%) |
#39dfed Color Usage In CSS
body { color: #39dfed; } p { color: rgb(57, 223, 237); } header { border-bottom:1px solid #39dfed; }