#491328 Color
Color Codes | |
---|---|
Hex Code | #491328 |
RGB Code | rgb(73, 19, 40) |
HSL Code | hsl(337, 59%, 18%) |
#491328 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(73, 19, 40); }
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(337, 59%, 18%); }
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 #491328
RGB Code | Hex Code | Preview |
---|---|---|
rgb(73, 19, 40, 10%) | #4913281a | |
rgb(73, 19, 40, 20%) | #49132833 | |
rgb(73, 19, 40, 40%) | #4913284C | |
rgb(73, 19, 40, 60%) | #49132899 | |
rgb(73, 19, 40, 80%) | #491328CC | |
rgb(73, 19, 40, 100%) | #491328FF |
Saturated and desaturated colors of #491328
HSL Code | Preview |
---|---|
hsl(337, 10%, 18%) | |
hsl(337, 20%, 18%) | |
hsl(337, 40%, 18%) | |
hsl(337, 60%, 18%) | |
hsl(337, 80%, 18%) | |
hsl(337, 100%, 18%) |
#491328 Color Usage In CSS
body { color: #491328; } p { color: rgb(73, 19, 40); } header { border-bottom:1px solid #491328; }