#3ad88c Color
Color Codes | |
---|---|
Hex Code | #3ad88c |
RGB Code | rgb(58, 216, 140) |
HSL Code | hsl(151, 67%, 54%) |
#3ad88c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(58, 216, 140); }
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, 67%, 54%); }
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 #3ad88c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(58, 216, 140, 10%) | #3ad88c1a | |
rgb(58, 216, 140, 20%) | #3ad88c33 | |
rgb(58, 216, 140, 40%) | #3ad88c4C | |
rgb(58, 216, 140, 60%) | #3ad88c99 | |
rgb(58, 216, 140, 80%) | #3ad88cCC | |
rgb(58, 216, 140, 100%) | #3ad88cFF |
Saturated and desaturated colors of #3ad88c
HSL Code | Preview |
---|---|
hsl(151, 10%, 54%) | |
hsl(151, 20%, 54%) | |
hsl(151, 40%, 54%) | |
hsl(151, 60%, 54%) | |
hsl(151, 80%, 54%) | |
hsl(151, 100%, 54%) |
#3ad88c Color Usage In CSS
body { color: #3ad88c; } p { color: rgb(58, 216, 140); } header { border-bottom:1px solid #3ad88c; }