#c9a695 Color
Color Codes | |
---|---|
Hex Code | #c9a695 |
RGB Code | rgb(201, 166, 149) |
HSL Code | hsl(20, 33%, 69%) |
#c9a695 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(201, 166, 149); }
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(20, 33%, 69%); }
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 #c9a695
RGB Code | Hex Code | Preview |
---|---|---|
rgb(201, 166, 149, 10%) | #c9a6951a | |
rgb(201, 166, 149, 20%) | #c9a69533 | |
rgb(201, 166, 149, 40%) | #c9a6954C | |
rgb(201, 166, 149, 60%) | #c9a69599 | |
rgb(201, 166, 149, 80%) | #c9a695CC | |
rgb(201, 166, 149, 100%) | #c9a695FF |
Saturated and desaturated colors of #c9a695
HSL Code | Preview |
---|---|
hsl(20, 10%, 69%) | |
hsl(20, 20%, 69%) | |
hsl(20, 40%, 69%) | |
hsl(20, 60%, 69%) | |
hsl(20, 80%, 69%) | |
hsl(20, 100%, 69%) |
#c9a695 Color Usage In CSS
body { color: #c9a695; } p { color: rgb(201, 166, 149); } header { border-bottom:1px solid #c9a695; }