#ca892d Color
Color Codes | |
---|---|
Hex Code | #ca892d |
RGB Code | rgb(202, 137, 45) |
HSL Code | hsl(35, 64%, 48%) |
#ca892d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(202, 137, 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(35, 64%, 48%); }
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 #ca892d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(202, 137, 45, 10%) | #ca892d1a | |
rgb(202, 137, 45, 20%) | #ca892d33 | |
rgb(202, 137, 45, 40%) | #ca892d4C | |
rgb(202, 137, 45, 60%) | #ca892d99 | |
rgb(202, 137, 45, 80%) | #ca892dCC | |
rgb(202, 137, 45, 100%) | #ca892dFF |
Saturated and desaturated colors of #ca892d
HSL Code | Preview |
---|---|
hsl(35, 10%, 48%) | |
hsl(35, 20%, 48%) | |
hsl(35, 40%, 48%) | |
hsl(35, 60%, 48%) | |
hsl(35, 80%, 48%) | |
hsl(35, 100%, 48%) |
#ca892d Color Usage In CSS
body { color: #ca892d; } p { color: rgb(202, 137, 45); } header { border-bottom:1px solid #ca892d; }