#63333b Color
Color Codes | |
---|---|
Hex Code | #63333b |
RGB Code | rgb(99, 51, 59) |
HSL Code | hsl(350, 32%, 29%) |
#63333b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(99, 51, 59); }
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(350, 32%, 29%); }
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 #63333b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(99, 51, 59, 10%) | #63333b1a | |
rgb(99, 51, 59, 20%) | #63333b33 | |
rgb(99, 51, 59, 40%) | #63333b4C | |
rgb(99, 51, 59, 60%) | #63333b99 | |
rgb(99, 51, 59, 80%) | #63333bCC | |
rgb(99, 51, 59, 100%) | #63333bFF |
Saturated and desaturated colors of #63333b
HSL Code | Preview |
---|---|
hsl(350, 10%, 29%) | |
hsl(350, 20%, 29%) | |
hsl(350, 40%, 29%) | |
hsl(350, 60%, 29%) | |
hsl(350, 80%, 29%) | |
hsl(350, 100%, 29%) |
#63333b Color Usage In CSS
body { color: #63333b; } p { color: rgb(99, 51, 59); } header { border-bottom:1px solid #63333b; }