#37f2b8 Color
Color Codes | |
---|---|
Hex Code | #37f2b8 |
RGB Code | rgb(55, 242, 184) |
HSL Code | hsl(161, 88%, 58%) |
#37f2b8 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(55, 242, 184); }
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(161, 88%, 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 #37f2b8
RGB Code | Hex Code | Preview |
---|---|---|
rgb(55, 242, 184, 10%) | #37f2b81a | |
rgb(55, 242, 184, 20%) | #37f2b833 | |
rgb(55, 242, 184, 40%) | #37f2b84C | |
rgb(55, 242, 184, 60%) | #37f2b899 | |
rgb(55, 242, 184, 80%) | #37f2b8CC | |
rgb(55, 242, 184, 100%) | #37f2b8FF |
Saturated and desaturated colors of #37f2b8
HSL Code | Preview |
---|---|
hsl(161, 10%, 58%) | |
hsl(161, 20%, 58%) | |
hsl(161, 40%, 58%) | |
hsl(161, 60%, 58%) | |
hsl(161, 80%, 58%) | |
hsl(161, 100%, 58%) |
#37f2b8 Color Usage In CSS
body { color: #37f2b8; } p { color: rgb(55, 242, 184); } header { border-bottom:1px solid #37f2b8; }