#e2fc72 Color
Color Codes | |
---|---|
Hex Code | #e2fc72 |
RGB Code | rgb(226, 252, 114) |
HSL Code | hsl(71, 96%, 72%) |
#e2fc72 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(226, 252, 114); }
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(71, 96%, 72%); }
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 #e2fc72
RGB Code | Hex Code | Preview |
---|---|---|
rgb(226, 252, 114, 10%) | #e2fc721a | |
rgb(226, 252, 114, 20%) | #e2fc7233 | |
rgb(226, 252, 114, 40%) | #e2fc724C | |
rgb(226, 252, 114, 60%) | #e2fc7299 | |
rgb(226, 252, 114, 80%) | #e2fc72CC | |
rgb(226, 252, 114, 100%) | #e2fc72FF |
Saturated and desaturated colors of #e2fc72
HSL Code | Preview |
---|---|
hsl(71, 10%, 72%) | |
hsl(71, 20%, 72%) | |
hsl(71, 40%, 72%) | |
hsl(71, 60%, 72%) | |
hsl(71, 80%, 72%) | |
hsl(71, 100%, 72%) |
#e2fc72 Color Usage In CSS
body { color: #e2fc72; } p { color: rgb(226, 252, 114); } header { border-bottom:1px solid #e2fc72; }