#27f0dc Color
Color Codes | |
---|---|
Hex Code | #27f0dc |
RGB Code | rgb(39, 240, 220) |
HSL Code | hsl(174, 87%, 55%) |
#27f0dc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(39, 240, 220); }
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(174, 87%, 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 #27f0dc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(39, 240, 220, 10%) | #27f0dc1a | |
rgb(39, 240, 220, 20%) | #27f0dc33 | |
rgb(39, 240, 220, 40%) | #27f0dc4C | |
rgb(39, 240, 220, 60%) | #27f0dc99 | |
rgb(39, 240, 220, 80%) | #27f0dcCC | |
rgb(39, 240, 220, 100%) | #27f0dcFF |
Saturated and desaturated colors of #27f0dc
HSL Code | Preview |
---|---|
hsl(174, 10%, 55%) | |
hsl(174, 20%, 55%) | |
hsl(174, 40%, 55%) | |
hsl(174, 60%, 55%) | |
hsl(174, 80%, 55%) | |
hsl(174, 100%, 55%) |
#27f0dc Color Usage In CSS
body { color: #27f0dc; } p { color: rgb(39, 240, 220); } header { border-bottom:1px solid #27f0dc; }