#c2832e Color
Color Codes | |
---|---|
Hex Code | #c2832e |
RGB Code | rgb(194, 131, 46) |
HSL Code | hsl(34, 62%, 47%) |
#c2832e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(194, 131, 46); }
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(34, 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 #c2832e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(194, 131, 46, 10%) | #c2832e1a | |
rgb(194, 131, 46, 20%) | #c2832e33 | |
rgb(194, 131, 46, 40%) | #c2832e4C | |
rgb(194, 131, 46, 60%) | #c2832e99 | |
rgb(194, 131, 46, 80%) | #c2832eCC | |
rgb(194, 131, 46, 100%) | #c2832eFF |
Saturated and desaturated colors of #c2832e
HSL Code | Preview |
---|---|
hsl(34, 10%, 47%) | |
hsl(34, 20%, 47%) | |
hsl(34, 40%, 47%) | |
hsl(34, 60%, 47%) | |
hsl(34, 80%, 47%) | |
hsl(34, 100%, 47%) |
#c2832e Color Usage In CSS
body { color: #c2832e; } p { color: rgb(194, 131, 46); } header { border-bottom:1px solid #c2832e; }