#23ca5e Color
Color Codes | |
---|---|
Hex Code | #23ca5e |
RGB Code | rgb(35, 202, 94) |
HSL Code | hsl(141, 70%, 46%) |
#23ca5e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(35, 202, 94); }
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, 70%, 46%); }
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 #23ca5e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(35, 202, 94, 10%) | #23ca5e1a | |
rgb(35, 202, 94, 20%) | #23ca5e33 | |
rgb(35, 202, 94, 40%) | #23ca5e4C | |
rgb(35, 202, 94, 60%) | #23ca5e99 | |
rgb(35, 202, 94, 80%) | #23ca5eCC | |
rgb(35, 202, 94, 100%) | #23ca5eFF |
Saturated and desaturated colors of #23ca5e
HSL Code | Preview |
---|---|
hsl(141, 10%, 46%) | |
hsl(141, 20%, 46%) | |
hsl(141, 40%, 46%) | |
hsl(141, 60%, 46%) | |
hsl(141, 80%, 46%) | |
hsl(141, 100%, 46%) |
#23ca5e Color Usage In CSS
body { color: #23ca5e; } p { color: rgb(35, 202, 94); } header { border-bottom:1px solid #23ca5e; }