#2de910 Color
Color Codes | |
---|---|
Hex Code | #2de910 |
RGB Code | rgb(45, 233, 16) |
HSL Code | hsl(112, 87%, 49%) |
#2de910 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(45, 233, 16); }
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(112, 87%, 49%); }
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 #2de910
RGB Code | Hex Code | Preview |
---|---|---|
rgb(45, 233, 16, 10%) | #2de9101a | |
rgb(45, 233, 16, 20%) | #2de91033 | |
rgb(45, 233, 16, 40%) | #2de9104C | |
rgb(45, 233, 16, 60%) | #2de91099 | |
rgb(45, 233, 16, 80%) | #2de910CC | |
rgb(45, 233, 16, 100%) | #2de910FF |
Saturated and desaturated colors of #2de910
HSL Code | Preview |
---|---|
hsl(112, 10%, 49%) | |
hsl(112, 20%, 49%) | |
hsl(112, 40%, 49%) | |
hsl(112, 60%, 49%) | |
hsl(112, 80%, 49%) | |
hsl(112, 100%, 49%) |
#2de910 Color Usage In CSS
body { color: #2de910; } p { color: rgb(45, 233, 16); } header { border-bottom:1px solid #2de910; }