#a5dc58 Color
Color Codes | |
---|---|
Hex Code | #a5dc58 |
RGB Code | rgb(165, 220, 88) |
HSL Code | hsl(85, 65%, 60%) |
#a5dc58 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(165, 220, 88); }
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(85, 65%, 60%); }
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 #a5dc58
RGB Code | Hex Code | Preview |
---|---|---|
rgb(165, 220, 88, 10%) | #a5dc581a | |
rgb(165, 220, 88, 20%) | #a5dc5833 | |
rgb(165, 220, 88, 40%) | #a5dc584C | |
rgb(165, 220, 88, 60%) | #a5dc5899 | |
rgb(165, 220, 88, 80%) | #a5dc58CC | |
rgb(165, 220, 88, 100%) | #a5dc58FF |
Saturated and desaturated colors of #a5dc58
HSL Code | Preview |
---|---|
hsl(85, 10%, 60%) | |
hsl(85, 20%, 60%) | |
hsl(85, 40%, 60%) | |
hsl(85, 60%, 60%) | |
hsl(85, 80%, 60%) | |
hsl(85, 100%, 60%) |
#a5dc58 Color Usage In CSS
body { color: #a5dc58; } p { color: rgb(165, 220, 88); } header { border-bottom:1px solid #a5dc58; }