#55354a Color
Color Codes | |
---|---|
Hex Code | #55354a |
RGB Code | rgb(85, 53, 74) |
HSL Code | hsl(321, 23%, 27%) |
#55354a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(85, 53, 74); }
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(321, 23%, 27%); }
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 #55354a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(85, 53, 74, 10%) | #55354a1a | |
rgb(85, 53, 74, 20%) | #55354a33 | |
rgb(85, 53, 74, 40%) | #55354a4C | |
rgb(85, 53, 74, 60%) | #55354a99 | |
rgb(85, 53, 74, 80%) | #55354aCC | |
rgb(85, 53, 74, 100%) | #55354aFF |
Saturated and desaturated colors of #55354a
HSL Code | Preview |
---|---|
hsl(321, 10%, 27%) | |
hsl(321, 20%, 27%) | |
hsl(321, 40%, 27%) | |
hsl(321, 60%, 27%) | |
hsl(321, 80%, 27%) | |
hsl(321, 100%, 27%) |
#55354a Color Usage In CSS
body { color: #55354a; } p { color: rgb(85, 53, 74); } header { border-bottom:1px solid #55354a; }