#05ae1d Color
Color Codes | |
---|---|
Hex Code | #05ae1d |
RGB Code | rgb(05, 174, 29) |
HSL Code | hsl(129, 94%, 35%) |
#05ae1d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(05, 174, 29); }
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(129, 94%, 35%); }
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 #05ae1d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(05, 174, 29, 10%) | #05ae1d1a | |
rgb(05, 174, 29, 20%) | #05ae1d33 | |
rgb(05, 174, 29, 40%) | #05ae1d4C | |
rgb(05, 174, 29, 60%) | #05ae1d99 | |
rgb(05, 174, 29, 80%) | #05ae1dCC | |
rgb(05, 174, 29, 100%) | #05ae1dFF |
Saturated and desaturated colors of #05ae1d
HSL Code | Preview |
---|---|
hsl(129, 10%, 35%) | |
hsl(129, 20%, 35%) | |
hsl(129, 40%, 35%) | |
hsl(129, 60%, 35%) | |
hsl(129, 80%, 35%) | |
hsl(129, 100%, 35%) |
#05ae1d Color Usage In CSS
body { color: #05ae1d; } p { color: rgb(05, 174, 29); } header { border-bottom:1px solid #05ae1d; }