#eff1ab Color
Color Codes | |
---|---|
Hex Code | #eff1ab |
RGB Code | rgb(239, 241, 171) |
HSL Code | hsl(62, 71%, 81%) |
#eff1ab Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(239, 241, 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(62, 71%, 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 #eff1ab
RGB Code | Hex Code | Preview |
---|---|---|
rgb(239, 241, 171, 10%) | #eff1ab1a | |
rgb(239, 241, 171, 20%) | #eff1ab33 | |
rgb(239, 241, 171, 40%) | #eff1ab4C | |
rgb(239, 241, 171, 60%) | #eff1ab99 | |
rgb(239, 241, 171, 80%) | #eff1abCC | |
rgb(239, 241, 171, 100%) | #eff1abFF |
Saturated and desaturated colors of #eff1ab
HSL Code | Preview |
---|---|
hsl(62, 10%, 81%) | |
hsl(62, 20%, 81%) | |
hsl(62, 40%, 81%) | |
hsl(62, 60%, 81%) | |
hsl(62, 80%, 81%) | |
hsl(62, 100%, 81%) |
#eff1ab Color Usage In CSS
body { color: #eff1ab; } p { color: rgb(239, 241, 171); } header { border-bottom:1px solid #eff1ab; }