#353835 Color
Color Codes | |
---|---|
Hex Code | #353835 |
RGB Code | rgb(53, 56, 53) |
HSL Code | hsl(120, 3%, 21%) |
#353835 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(53, 56, 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(120, 3%, 21%); }
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 #353835
RGB Code | Hex Code | Preview |
---|---|---|
rgb(53, 56, 53, 10%) | #3538351a | |
rgb(53, 56, 53, 20%) | #35383533 | |
rgb(53, 56, 53, 40%) | #3538354C | |
rgb(53, 56, 53, 60%) | #35383599 | |
rgb(53, 56, 53, 80%) | #353835CC | |
rgb(53, 56, 53, 100%) | #353835FF |
Saturated and desaturated colors of #353835
HSL Code | Preview |
---|---|
hsl(120, 10%, 21%) | |
hsl(120, 20%, 21%) | |
hsl(120, 40%, 21%) | |
hsl(120, 60%, 21%) | |
hsl(120, 80%, 21%) | |
hsl(120, 100%, 21%) |
#353835 Color Usage In CSS
body { color: #353835; } p { color: rgb(53, 56, 53); } header { border-bottom:1px solid #353835; }