#e5f702 Color
Color Codes | |
---|---|
Hex Code | #e5f702 |
RGB Code | rgb(229, 247, 02) |
HSL Code | hsl(64, 98%, 49%) |
#e5f702 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(229, 247, 02); }
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(64, 98%, 49%); }
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 #e5f702
RGB Code | Hex Code | Preview |
---|---|---|
rgb(229, 247, 02, 10%) | #e5f7021a | |
rgb(229, 247, 02, 20%) | #e5f70233 | |
rgb(229, 247, 02, 40%) | #e5f7024C | |
rgb(229, 247, 02, 60%) | #e5f70299 | |
rgb(229, 247, 02, 80%) | #e5f702CC | |
rgb(229, 247, 02, 100%) | #e5f702FF |
Saturated and desaturated colors of #e5f702
HSL Code | Preview |
---|---|
hsl(64, 10%, 49%) | |
hsl(64, 20%, 49%) | |
hsl(64, 40%, 49%) | |
hsl(64, 60%, 49%) | |
hsl(64, 80%, 49%) | |
hsl(64, 100%, 49%) |
#e5f702 Color Usage In CSS
body { color: #e5f702; } p { color: rgb(229, 247, 02); } header { border-bottom:1px solid #e5f702; }