#e2f3ab Color
Color Codes | |
---|---|
Hex Code | #e2f3ab |
RGB Code | rgb(226, 243, 171) |
HSL Code | hsl(74, 75%, 81%) |
#e2f3ab Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(226, 243, 171); }
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(74, 75%, 81%); }
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 #e2f3ab
RGB Code | Hex Code | Preview |
---|---|---|
rgb(226, 243, 171, 10%) | #e2f3ab1a | |
rgb(226, 243, 171, 20%) | #e2f3ab33 | |
rgb(226, 243, 171, 40%) | #e2f3ab4C | |
rgb(226, 243, 171, 60%) | #e2f3ab99 | |
rgb(226, 243, 171, 80%) | #e2f3abCC | |
rgb(226, 243, 171, 100%) | #e2f3abFF |
Saturated and desaturated colors of #e2f3ab
HSL Code | Preview |
---|---|
hsl(74, 10%, 81%) | |
hsl(74, 20%, 81%) | |
hsl(74, 40%, 81%) | |
hsl(74, 60%, 81%) | |
hsl(74, 80%, 81%) | |
hsl(74, 100%, 81%) |
#e2f3ab Color Usage In CSS
body { color: #e2f3ab; } p { color: rgb(226, 243, 171); } header { border-bottom:1px solid #e2f3ab; }