#482535 Color
Color Codes | |
---|---|
Hex Code | #482535 |
RGB Code | rgb(72, 37, 53) |
HSL Code | hsl(333, 32%, 21%) |
#482535 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(72, 37, 53); }
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(333, 32%, 21%); }
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 #482535
RGB Code | Hex Code | Preview |
---|---|---|
rgb(72, 37, 53, 10%) | #4825351a | |
rgb(72, 37, 53, 20%) | #48253533 | |
rgb(72, 37, 53, 40%) | #4825354C | |
rgb(72, 37, 53, 60%) | #48253599 | |
rgb(72, 37, 53, 80%) | #482535CC | |
rgb(72, 37, 53, 100%) | #482535FF |
Saturated and desaturated colors of #482535
HSL Code | Preview |
---|---|
hsl(333, 10%, 21%) | |
hsl(333, 20%, 21%) | |
hsl(333, 40%, 21%) | |
hsl(333, 60%, 21%) | |
hsl(333, 80%, 21%) | |
hsl(333, 100%, 21%) |
#482535 Color Usage In CSS
body { color: #482535; } p { color: rgb(72, 37, 53); } header { border-bottom:1px solid #482535; }