#c3490b Color
Color Codes | |
---|---|
Hex Code | #c3490b |
RGB Code | rgb(195, 73, 11) |
HSL Code | hsl(20, 89%, 40%) |
#c3490b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(195, 73, 11); }
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(20, 89%, 40%); }
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 #c3490b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(195, 73, 11, 10%) | #c3490b1a | |
rgb(195, 73, 11, 20%) | #c3490b33 | |
rgb(195, 73, 11, 40%) | #c3490b4C | |
rgb(195, 73, 11, 60%) | #c3490b99 | |
rgb(195, 73, 11, 80%) | #c3490bCC | |
rgb(195, 73, 11, 100%) | #c3490bFF |
Saturated and desaturated colors of #c3490b
HSL Code | Preview |
---|---|
hsl(20, 10%, 40%) | |
hsl(20, 20%, 40%) | |
hsl(20, 40%, 40%) | |
hsl(20, 60%, 40%) | |
hsl(20, 80%, 40%) | |
hsl(20, 100%, 40%) |
#c3490b Color Usage In CSS
body { color: #c3490b; } p { color: rgb(195, 73, 11); } header { border-bottom:1px solid #c3490b; }