#caa863 Color
Color Codes | |
---|---|
Hex Code | #caa863 |
RGB Code | rgb(202, 168, 99) |
HSL Code | hsl(40, 49%, 59%) |
#caa863 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(202, 168, 99); }
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, 49%, 59%); }
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 #caa863
RGB Code | Hex Code | Preview |
---|---|---|
rgb(202, 168, 99, 10%) | #caa8631a | |
rgb(202, 168, 99, 20%) | #caa86333 | |
rgb(202, 168, 99, 40%) | #caa8634C | |
rgb(202, 168, 99, 60%) | #caa86399 | |
rgb(202, 168, 99, 80%) | #caa863CC | |
rgb(202, 168, 99, 100%) | #caa863FF |
Saturated and desaturated colors of #caa863
HSL Code | Preview |
---|---|
hsl(40, 10%, 59%) | |
hsl(40, 20%, 59%) | |
hsl(40, 40%, 59%) | |
hsl(40, 60%, 59%) | |
hsl(40, 80%, 59%) | |
hsl(40, 100%, 59%) |
#caa863 Color Usage In CSS
body { color: #caa863; } p { color: rgb(202, 168, 99); } header { border-bottom:1px solid #caa863; }