#e2f815 Color
Color Codes | |
---|---|
Hex Code | #e2f815 |
RGB Code | rgb(226, 248, 21) |
HSL Code | hsl(66, 94%, 53%) |
#e2f815 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(226, 248, 21); }
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(66, 94%, 53%); }
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 #e2f815
RGB Code | Hex Code | Preview |
---|---|---|
rgb(226, 248, 21, 10%) | #e2f8151a | |
rgb(226, 248, 21, 20%) | #e2f81533 | |
rgb(226, 248, 21, 40%) | #e2f8154C | |
rgb(226, 248, 21, 60%) | #e2f81599 | |
rgb(226, 248, 21, 80%) | #e2f815CC | |
rgb(226, 248, 21, 100%) | #e2f815FF |
Saturated and desaturated colors of #e2f815
HSL Code | Preview |
---|---|
hsl(66, 10%, 53%) | |
hsl(66, 20%, 53%) | |
hsl(66, 40%, 53%) | |
hsl(66, 60%, 53%) | |
hsl(66, 80%, 53%) | |
hsl(66, 100%, 53%) |
#e2f815 Color Usage In CSS
body { color: #e2f815; } p { color: rgb(226, 248, 21); } header { border-bottom:1px solid #e2f815; }