#93484e Color
Color Codes | |
---|---|
Hex Code | #93484e |
RGB Code | rgb(147, 72, 78) |
HSL Code | hsl(355, 34%, 43%) |
#93484e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(147, 72, 78); }
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(355, 34%, 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 #93484e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(147, 72, 78, 10%) | #93484e1a | |
rgb(147, 72, 78, 20%) | #93484e33 | |
rgb(147, 72, 78, 40%) | #93484e4C | |
rgb(147, 72, 78, 60%) | #93484e99 | |
rgb(147, 72, 78, 80%) | #93484eCC | |
rgb(147, 72, 78, 100%) | #93484eFF |
Saturated and desaturated colors of #93484e
HSL Code | Preview |
---|---|
hsl(355, 10%, 43%) | |
hsl(355, 20%, 43%) | |
hsl(355, 40%, 43%) | |
hsl(355, 60%, 43%) | |
hsl(355, 80%, 43%) | |
hsl(355, 100%, 43%) |
#93484e Color Usage In CSS
body { color: #93484e; } p { color: rgb(147, 72, 78); } header { border-bottom:1px solid #93484e; }