#42ea9a Color
Color Codes | |
---|---|
Hex Code | #42ea9a |
RGB Code | rgb(66, 234, 154) |
HSL Code | hsl(151, 80%, 59%) |
#42ea9a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(66, 234, 154); }
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(151, 80%, 59%); }
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 #42ea9a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(66, 234, 154, 10%) | #42ea9a1a | |
rgb(66, 234, 154, 20%) | #42ea9a33 | |
rgb(66, 234, 154, 40%) | #42ea9a4C | |
rgb(66, 234, 154, 60%) | #42ea9a99 | |
rgb(66, 234, 154, 80%) | #42ea9aCC | |
rgb(66, 234, 154, 100%) | #42ea9aFF |
Saturated and desaturated colors of #42ea9a
HSL Code | Preview |
---|---|
hsl(151, 10%, 59%) | |
hsl(151, 20%, 59%) | |
hsl(151, 40%, 59%) | |
hsl(151, 60%, 59%) | |
hsl(151, 80%, 59%) | |
hsl(151, 100%, 59%) |
#42ea9a Color Usage In CSS
body { color: #42ea9a; } p { color: rgb(66, 234, 154); } header { border-bottom:1px solid #42ea9a; }