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