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