#633216 Color
Color Codes | |
---|---|
Hex Code | #633216 |
RGB Code | rgb(99, 50, 22) |
HSL Code | hsl(22, 64%, 24%) |
#633216 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(99, 50, 22); }
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(22, 64%, 24%); }
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 #633216
RGB Code | Hex Code | Preview |
---|---|---|
rgb(99, 50, 22, 10%) | #6332161a | |
rgb(99, 50, 22, 20%) | #63321633 | |
rgb(99, 50, 22, 40%) | #6332164C | |
rgb(99, 50, 22, 60%) | #63321699 | |
rgb(99, 50, 22, 80%) | #633216CC | |
rgb(99, 50, 22, 100%) | #633216FF |
Saturated and desaturated colors of #633216
HSL Code | Preview |
---|---|
hsl(22, 10%, 24%) | |
hsl(22, 20%, 24%) | |
hsl(22, 40%, 24%) | |
hsl(22, 60%, 24%) | |
hsl(22, 80%, 24%) | |
hsl(22, 100%, 24%) |
#633216 Color Usage In CSS
body { color: #633216; } p { color: rgb(99, 50, 22); } header { border-bottom:1px solid #633216; }