#40e083 Color
Color Codes | |
---|---|
Hex Code | #40e083 |
RGB Code | rgb(64, 224, 131) |
HSL Code | hsl(145, 72%, 56%) |
#40e083 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(64, 224, 131); }
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(145, 72%, 56%); }
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 #40e083
RGB Code | Hex Code | Preview |
---|---|---|
rgb(64, 224, 131, 10%) | #40e0831a | |
rgb(64, 224, 131, 20%) | #40e08333 | |
rgb(64, 224, 131, 40%) | #40e0834C | |
rgb(64, 224, 131, 60%) | #40e08399 | |
rgb(64, 224, 131, 80%) | #40e083CC | |
rgb(64, 224, 131, 100%) | #40e083FF |
Saturated and desaturated colors of #40e083
HSL Code | Preview |
---|---|
hsl(145, 10%, 56%) | |
hsl(145, 20%, 56%) | |
hsl(145, 40%, 56%) | |
hsl(145, 60%, 56%) | |
hsl(145, 80%, 56%) | |
hsl(145, 100%, 56%) |
#40e083 Color Usage In CSS
body { color: #40e083; } p { color: rgb(64, 224, 131); } header { border-bottom:1px solid #40e083; }