#c4893f Color
Color Codes | |
---|---|
Hex Code | #c4893f |
RGB Code | rgb(196, 137, 63) |
HSL Code | hsl(33, 53%, 51%) |
#c4893f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(196, 137, 63); }
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(33, 53%, 51%); }
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 #c4893f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(196, 137, 63, 10%) | #c4893f1a | |
rgb(196, 137, 63, 20%) | #c4893f33 | |
rgb(196, 137, 63, 40%) | #c4893f4C | |
rgb(196, 137, 63, 60%) | #c4893f99 | |
rgb(196, 137, 63, 80%) | #c4893fCC | |
rgb(196, 137, 63, 100%) | #c4893fFF |
Saturated and desaturated colors of #c4893f
HSL Code | Preview |
---|---|
hsl(33, 10%, 51%) | |
hsl(33, 20%, 51%) | |
hsl(33, 40%, 51%) | |
hsl(33, 60%, 51%) | |
hsl(33, 80%, 51%) | |
hsl(33, 100%, 51%) |
#c4893f Color Usage In CSS
body { color: #c4893f; } p { color: rgb(196, 137, 63); } header { border-bottom:1px solid #c4893f; }