#e3f166 Color
Color Codes | |
---|---|
Hex Code | #e3f166 |
RGB Code | rgb(227, 241, 102) |
HSL Code | hsl(66, 83%, 67%) |
#e3f166 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(227, 241, 102); }
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, 83%, 67%); }
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 #e3f166
RGB Code | Hex Code | Preview |
---|---|---|
rgb(227, 241, 102, 10%) | #e3f1661a | |
rgb(227, 241, 102, 20%) | #e3f16633 | |
rgb(227, 241, 102, 40%) | #e3f1664C | |
rgb(227, 241, 102, 60%) | #e3f16699 | |
rgb(227, 241, 102, 80%) | #e3f166CC | |
rgb(227, 241, 102, 100%) | #e3f166FF |
Saturated and desaturated colors of #e3f166
HSL Code | Preview |
---|---|
hsl(66, 10%, 67%) | |
hsl(66, 20%, 67%) | |
hsl(66, 40%, 67%) | |
hsl(66, 60%, 67%) | |
hsl(66, 80%, 67%) | |
hsl(66, 100%, 67%) |
#e3f166 Color Usage In CSS
body { color: #e3f166; } p { color: rgb(227, 241, 102); } header { border-bottom:1px solid #e3f166; }