#552a01 Color
Color Codes | |
---|---|
Hex Code | #552a01 |
RGB Code | rgb(85, 42, 01) |
HSL Code | hsl(29, 98%, 17%) |
#552a01 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(85, 42, 01); }
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(29, 98%, 17%); }
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 #552a01
RGB Code | Hex Code | Preview |
---|---|---|
rgb(85, 42, 01, 10%) | #552a011a | |
rgb(85, 42, 01, 20%) | #552a0133 | |
rgb(85, 42, 01, 40%) | #552a014C | |
rgb(85, 42, 01, 60%) | #552a0199 | |
rgb(85, 42, 01, 80%) | #552a01CC | |
rgb(85, 42, 01, 100%) | #552a01FF |
Saturated and desaturated colors of #552a01
HSL Code | Preview |
---|---|
hsl(29, 10%, 17%) | |
hsl(29, 20%, 17%) | |
hsl(29, 40%, 17%) | |
hsl(29, 60%, 17%) | |
hsl(29, 80%, 17%) | |
hsl(29, 100%, 17%) |
#552a01 Color Usage In CSS
body { color: #552a01; } p { color: rgb(85, 42, 01); } header { border-bottom:1px solid #552a01; }