#5ae78c Color
Color Codes | |
---|---|
Hex Code | #5ae78c |
RGB Code | rgb(90, 231, 140) |
HSL Code | hsl(141, 75%, 63%) |
#5ae78c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(90, 231, 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(141, 75%, 63%); }
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 #5ae78c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(90, 231, 140, 10%) | #5ae78c1a | |
rgb(90, 231, 140, 20%) | #5ae78c33 | |
rgb(90, 231, 140, 40%) | #5ae78c4C | |
rgb(90, 231, 140, 60%) | #5ae78c99 | |
rgb(90, 231, 140, 80%) | #5ae78cCC | |
rgb(90, 231, 140, 100%) | #5ae78cFF |
Saturated and desaturated colors of #5ae78c
HSL Code | Preview |
---|---|
hsl(141, 10%, 63%) | |
hsl(141, 20%, 63%) | |
hsl(141, 40%, 63%) | |
hsl(141, 60%, 63%) | |
hsl(141, 80%, 63%) | |
hsl(141, 100%, 63%) |
#5ae78c Color Usage In CSS
body { color: #5ae78c; } p { color: rgb(90, 231, 140); } header { border-bottom:1px solid #5ae78c; }