#933d40 Color
Color Codes | |
---|---|
Hex Code | #933d40 |
RGB Code | rgb(147, 61, 64) |
HSL Code | hsl(358, 41%, 41%) |
#933d40 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(147, 61, 64); }
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(358, 41%, 41%); }
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 #933d40
RGB Code | Hex Code | Preview |
---|---|---|
rgb(147, 61, 64, 10%) | #933d401a | |
rgb(147, 61, 64, 20%) | #933d4033 | |
rgb(147, 61, 64, 40%) | #933d404C | |
rgb(147, 61, 64, 60%) | #933d4099 | |
rgb(147, 61, 64, 80%) | #933d40CC | |
rgb(147, 61, 64, 100%) | #933d40FF |
Saturated and desaturated colors of #933d40
HSL Code | Preview |
---|---|
hsl(358, 10%, 41%) | |
hsl(358, 20%, 41%) | |
hsl(358, 40%, 41%) | |
hsl(358, 60%, 41%) | |
hsl(358, 80%, 41%) | |
hsl(358, 100%, 41%) |
#933d40 Color Usage In CSS
body { color: #933d40; } p { color: rgb(147, 61, 64); } header { border-bottom:1px solid #933d40; }