#c0653a Color
Color Codes | |
---|---|
Hex Code | #c0653a |
RGB Code | rgb(192, 101, 58) |
HSL Code | hsl(19, 54%, 49%) |
#c0653a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(192, 101, 58); }
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(19, 54%, 49%); }
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 #c0653a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(192, 101, 58, 10%) | #c0653a1a | |
rgb(192, 101, 58, 20%) | #c0653a33 | |
rgb(192, 101, 58, 40%) | #c0653a4C | |
rgb(192, 101, 58, 60%) | #c0653a99 | |
rgb(192, 101, 58, 80%) | #c0653aCC | |
rgb(192, 101, 58, 100%) | #c0653aFF |
Saturated and desaturated colors of #c0653a
HSL Code | Preview |
---|---|
hsl(19, 10%, 49%) | |
hsl(19, 20%, 49%) | |
hsl(19, 40%, 49%) | |
hsl(19, 60%, 49%) | |
hsl(19, 80%, 49%) | |
hsl(19, 100%, 49%) |
#c0653a Color Usage In CSS
body { color: #c0653a; } p { color: rgb(192, 101, 58); } header { border-bottom:1px solid #c0653a; }