#39e1d7 Color
Color Codes | |
---|---|
Hex Code | #39e1d7 |
RGB Code | rgb(57, 225, 215) |
HSL Code | hsl(176, 74%, 55%) |
#39e1d7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(57, 225, 215); }
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(176, 74%, 55%); }
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 #39e1d7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(57, 225, 215, 10%) | #39e1d71a | |
rgb(57, 225, 215, 20%) | #39e1d733 | |
rgb(57, 225, 215, 40%) | #39e1d74C | |
rgb(57, 225, 215, 60%) | #39e1d799 | |
rgb(57, 225, 215, 80%) | #39e1d7CC | |
rgb(57, 225, 215, 100%) | #39e1d7FF |
Saturated and desaturated colors of #39e1d7
HSL Code | Preview |
---|---|
hsl(176, 10%, 55%) | |
hsl(176, 20%, 55%) | |
hsl(176, 40%, 55%) | |
hsl(176, 60%, 55%) | |
hsl(176, 80%, 55%) | |
hsl(176, 100%, 55%) |
#39e1d7 Color Usage In CSS
body { color: #39e1d7; } p { color: rgb(57, 225, 215); } header { border-bottom:1px solid #39e1d7; }