#493b33 Color
Color Codes | |
---|---|
Hex Code | #493b33 |
RGB Code | rgb(73, 59, 51) |
HSL Code | hsl(22, 18%, 24%) |
#493b33 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(73, 59, 51); }
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, 18%, 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 #493b33
RGB Code | Hex Code | Preview |
---|---|---|
rgb(73, 59, 51, 10%) | #493b331a | |
rgb(73, 59, 51, 20%) | #493b3333 | |
rgb(73, 59, 51, 40%) | #493b334C | |
rgb(73, 59, 51, 60%) | #493b3399 | |
rgb(73, 59, 51, 80%) | #493b33CC | |
rgb(73, 59, 51, 100%) | #493b33FF |
Saturated and desaturated colors of #493b33
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%) |
#493b33 Color Usage In CSS
body { color: #493b33; } p { color: rgb(73, 59, 51); } header { border-bottom:1px solid #493b33; }