#c1a362 Color
Color Codes | |
---|---|
Hex Code | #c1a362 |
RGB Code | rgb(193, 163, 98) |
HSL Code | hsl(41, 43%, 57%) |
#c1a362 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(193, 163, 98); }
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(41, 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 #c1a362
RGB Code | Hex Code | Preview |
---|---|---|
rgb(193, 163, 98, 10%) | #c1a3621a | |
rgb(193, 163, 98, 20%) | #c1a36233 | |
rgb(193, 163, 98, 40%) | #c1a3624C | |
rgb(193, 163, 98, 60%) | #c1a36299 | |
rgb(193, 163, 98, 80%) | #c1a362CC | |
rgb(193, 163, 98, 100%) | #c1a362FF |
Saturated and desaturated colors of #c1a362
HSL Code | Preview |
---|---|
hsl(41, 10%, 57%) | |
hsl(41, 20%, 57%) | |
hsl(41, 40%, 57%) | |
hsl(41, 60%, 57%) | |
hsl(41, 80%, 57%) | |
hsl(41, 100%, 57%) |
#c1a362 Color Usage In CSS
body { color: #c1a362; } p { color: rgb(193, 163, 98); } header { border-bottom:1px solid #c1a362; }