#552835 Color
Color Codes | |
---|---|
Hex Code | #552835 |
RGB Code | rgb(85, 40, 53) |
HSL Code | hsl(343, 36%, 25%) |
#552835 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(85, 40, 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(343, 36%, 25%); }
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 #552835
RGB Code | Hex Code | Preview |
---|---|---|
rgb(85, 40, 53, 10%) | #5528351a | |
rgb(85, 40, 53, 20%) | #55283533 | |
rgb(85, 40, 53, 40%) | #5528354C | |
rgb(85, 40, 53, 60%) | #55283599 | |
rgb(85, 40, 53, 80%) | #552835CC | |
rgb(85, 40, 53, 100%) | #552835FF |
Saturated and desaturated colors of #552835
HSL Code | Preview |
---|---|
hsl(343, 10%, 25%) | |
hsl(343, 20%, 25%) | |
hsl(343, 40%, 25%) | |
hsl(343, 60%, 25%) | |
hsl(343, 80%, 25%) | |
hsl(343, 100%, 25%) |
#552835 Color Usage In CSS
body { color: #552835; } p { color: rgb(85, 40, 53); } header { border-bottom:1px solid #552835; }