#93320e Color
Color Codes | |
---|---|
Hex Code | #93320e |
RGB Code | rgb(147, 50, 14) |
HSL Code | hsl(16, 83%, 32%) |
#93320e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(147, 50, 14); }
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(16, 83%, 32%); }
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 #93320e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(147, 50, 14, 10%) | #93320e1a | |
rgb(147, 50, 14, 20%) | #93320e33 | |
rgb(147, 50, 14, 40%) | #93320e4C | |
rgb(147, 50, 14, 60%) | #93320e99 | |
rgb(147, 50, 14, 80%) | #93320eCC | |
rgb(147, 50, 14, 100%) | #93320eFF |
Saturated and desaturated colors of #93320e
HSL Code | Preview |
---|---|
hsl(16, 10%, 32%) | |
hsl(16, 20%, 32%) | |
hsl(16, 40%, 32%) | |
hsl(16, 60%, 32%) | |
hsl(16, 80%, 32%) | |
hsl(16, 100%, 32%) |
#93320e Color Usage In CSS
body { color: #93320e; } p { color: rgb(147, 50, 14); } header { border-bottom:1px solid #93320e; }