#aba599 Color
Color Codes | |
---|---|
Hex Code | #aba599 |
RGB Code | rgb(171, 165, 153) |
HSL Code | hsl(40, 10%, 64%) |
#aba599 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(171, 165, 153); }
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(40, 10%, 64%); }
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 #aba599
RGB Code | Hex Code | Preview |
---|---|---|
rgb(171, 165, 153, 10%) | #aba5991a | |
rgb(171, 165, 153, 20%) | #aba59933 | |
rgb(171, 165, 153, 40%) | #aba5994C | |
rgb(171, 165, 153, 60%) | #aba59999 | |
rgb(171, 165, 153, 80%) | #aba599CC | |
rgb(171, 165, 153, 100%) | #aba599FF |
Saturated and desaturated colors of #aba599
HSL Code | Preview |
---|---|
hsl(40, 10%, 64%) | |
hsl(40, 20%, 64%) | |
hsl(40, 40%, 64%) | |
hsl(40, 60%, 64%) | |
hsl(40, 80%, 64%) | |
hsl(40, 100%, 64%) |
#aba599 Color Usage In CSS
body { color: #aba599; } p { color: rgb(171, 165, 153); } header { border-bottom:1px solid #aba599; }