#c1a164 Color
Color Codes | |
---|---|
Hex Code | #c1a164 |
RGB Code | rgb(193, 161, 100) |
HSL Code | hsl(39, 43%, 57%) |
#c1a164 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(193, 161, 100); }
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(39, 43%, 57%); }
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 #c1a164
RGB Code | Hex Code | Preview |
---|---|---|
rgb(193, 161, 100, 10%) | #c1a1641a | |
rgb(193, 161, 100, 20%) | #c1a16433 | |
rgb(193, 161, 100, 40%) | #c1a1644C | |
rgb(193, 161, 100, 60%) | #c1a16499 | |
rgb(193, 161, 100, 80%) | #c1a164CC | |
rgb(193, 161, 100, 100%) | #c1a164FF |
Saturated and desaturated colors of #c1a164
HSL Code | Preview |
---|---|
hsl(39, 10%, 57%) | |
hsl(39, 20%, 57%) | |
hsl(39, 40%, 57%) | |
hsl(39, 60%, 57%) | |
hsl(39, 80%, 57%) | |
hsl(39, 100%, 57%) |
#c1a164 Color Usage In CSS
body { color: #c1a164; } p { color: rgb(193, 161, 100); } header { border-bottom:1px solid #c1a164; }