#84613a Color
Color Codes | |
---|---|
Hex Code | #84613a |
RGB Code | rgb(132, 97, 58) |
HSL Code | hsl(32, 39%, 37%) |
#84613a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(132, 97, 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(32, 39%, 37%); }
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 #84613a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(132, 97, 58, 10%) | #84613a1a | |
rgb(132, 97, 58, 20%) | #84613a33 | |
rgb(132, 97, 58, 40%) | #84613a4C | |
rgb(132, 97, 58, 60%) | #84613a99 | |
rgb(132, 97, 58, 80%) | #84613aCC | |
rgb(132, 97, 58, 100%) | #84613aFF |
Saturated and desaturated colors of #84613a
HSL Code | Preview |
---|---|
hsl(32, 10%, 37%) | |
hsl(32, 20%, 37%) | |
hsl(32, 40%, 37%) | |
hsl(32, 60%, 37%) | |
hsl(32, 80%, 37%) | |
hsl(32, 100%, 37%) |
#84613a Color Usage In CSS
body { color: #84613a; } p { color: rgb(132, 97, 58); } header { border-bottom:1px solid #84613a; }