#3ec98a Color
Color Codes | |
---|---|
Hex Code | #3ec98a |
RGB Code | rgb(62, 201, 138) |
HSL Code | hsl(153, 56%, 52%) |
#3ec98a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(62, 201, 138); }
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(153, 56%, 52%); }
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 #3ec98a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(62, 201, 138, 10%) | #3ec98a1a | |
rgb(62, 201, 138, 20%) | #3ec98a33 | |
rgb(62, 201, 138, 40%) | #3ec98a4C | |
rgb(62, 201, 138, 60%) | #3ec98a99 | |
rgb(62, 201, 138, 80%) | #3ec98aCC | |
rgb(62, 201, 138, 100%) | #3ec98aFF |
Saturated and desaturated colors of #3ec98a
HSL Code | Preview |
---|---|
hsl(153, 10%, 52%) | |
hsl(153, 20%, 52%) | |
hsl(153, 40%, 52%) | |
hsl(153, 60%, 52%) | |
hsl(153, 80%, 52%) | |
hsl(153, 100%, 52%) |
#3ec98a Color Usage In CSS
body { color: #3ec98a; } p { color: rgb(62, 201, 138); } header { border-bottom:1px solid #3ec98a; }