#a5cc65 Color
Color Codes | |
---|---|
Hex Code | #a5cc65 |
RGB Code | rgb(165, 204, 101) |
HSL Code | hsl(83, 50%, 60%) |
#a5cc65 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(165, 204, 101); }
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(83, 50%, 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 #a5cc65
RGB Code | Hex Code | Preview |
---|---|---|
rgb(165, 204, 101, 10%) | #a5cc651a | |
rgb(165, 204, 101, 20%) | #a5cc6533 | |
rgb(165, 204, 101, 40%) | #a5cc654C | |
rgb(165, 204, 101, 60%) | #a5cc6599 | |
rgb(165, 204, 101, 80%) | #a5cc65CC | |
rgb(165, 204, 101, 100%) | #a5cc65FF |
Saturated and desaturated colors of #a5cc65
HSL Code | Preview |
---|---|
hsl(83, 10%, 60%) | |
hsl(83, 20%, 60%) | |
hsl(83, 40%, 60%) | |
hsl(83, 60%, 60%) | |
hsl(83, 80%, 60%) | |
hsl(83, 100%, 60%) |
#a5cc65 Color Usage In CSS
body { color: #a5cc65; } p { color: rgb(165, 204, 101); } header { border-bottom:1px solid #a5cc65; }