#c86534 Color
Color Codes | |
---|---|
Hex Code | #c86534 |
RGB Code | rgb(200, 101, 52) |
HSL Code | hsl(20, 59%, 49%) |
#c86534 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(200, 101, 52); }
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, 59%, 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 #c86534
RGB Code | Hex Code | Preview |
---|---|---|
rgb(200, 101, 52, 10%) | #c865341a | |
rgb(200, 101, 52, 20%) | #c8653433 | |
rgb(200, 101, 52, 40%) | #c865344C | |
rgb(200, 101, 52, 60%) | #c8653499 | |
rgb(200, 101, 52, 80%) | #c86534CC | |
rgb(200, 101, 52, 100%) | #c86534FF |
Saturated and desaturated colors of #c86534
HSL Code | Preview |
---|---|
hsl(20, 10%, 49%) | |
hsl(20, 20%, 49%) | |
hsl(20, 40%, 49%) | |
hsl(20, 60%, 49%) | |
hsl(20, 80%, 49%) | |
hsl(20, 100%, 49%) |
#c86534 Color Usage In CSS
body { color: #c86534; } p { color: rgb(200, 101, 52); } header { border-bottom:1px solid #c86534; }