#904b4f Color
Color Codes | |
---|---|
Hex Code | #904b4f |
RGB Code | rgb(144, 75, 79) |
HSL Code | hsl(357, 32%, 43%) |
#904b4f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(144, 75, 79); }
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(357, 32%, 43%); }
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 #904b4f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(144, 75, 79, 10%) | #904b4f1a | |
rgb(144, 75, 79, 20%) | #904b4f33 | |
rgb(144, 75, 79, 40%) | #904b4f4C | |
rgb(144, 75, 79, 60%) | #904b4f99 | |
rgb(144, 75, 79, 80%) | #904b4fCC | |
rgb(144, 75, 79, 100%) | #904b4fFF |
Saturated and desaturated colors of #904b4f
HSL Code | Preview |
---|---|
hsl(357, 10%, 43%) | |
hsl(357, 20%, 43%) | |
hsl(357, 40%, 43%) | |
hsl(357, 60%, 43%) | |
hsl(357, 80%, 43%) | |
hsl(357, 100%, 43%) |
#904b4f Color Usage In CSS
body { color: #904b4f; } p { color: rgb(144, 75, 79); } header { border-bottom:1px solid #904b4f; }