#c1682d Color
Color Codes | |
---|---|
Hex Code | #c1682d |
RGB Code | rgb(193, 104, 45) |
HSL Code | hsl(24, 62%, 47%) |
#c1682d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(193, 104, 45); }
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(24, 62%, 47%); }
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 #c1682d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(193, 104, 45, 10%) | #c1682d1a | |
rgb(193, 104, 45, 20%) | #c1682d33 | |
rgb(193, 104, 45, 40%) | #c1682d4C | |
rgb(193, 104, 45, 60%) | #c1682d99 | |
rgb(193, 104, 45, 80%) | #c1682dCC | |
rgb(193, 104, 45, 100%) | #c1682dFF |
Saturated and desaturated colors of #c1682d
HSL Code | Preview |
---|---|
hsl(24, 10%, 47%) | |
hsl(24, 20%, 47%) | |
hsl(24, 40%, 47%) | |
hsl(24, 60%, 47%) | |
hsl(24, 80%, 47%) | |
hsl(24, 100%, 47%) |
#c1682d Color Usage In CSS
body { color: #c1682d; } p { color: rgb(193, 104, 45); } header { border-bottom:1px solid #c1682d; }