#96953f Color
Color Codes | |
---|---|
Hex Code | #96953f |
RGB Code | rgb(150, 149, 63) |
HSL Code | hsl(59, 41%, 42%) |
#96953f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(150, 149, 63); }
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(59, 41%, 42%); }
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 #96953f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(150, 149, 63, 10%) | #96953f1a | |
rgb(150, 149, 63, 20%) | #96953f33 | |
rgb(150, 149, 63, 40%) | #96953f4C | |
rgb(150, 149, 63, 60%) | #96953f99 | |
rgb(150, 149, 63, 80%) | #96953fCC | |
rgb(150, 149, 63, 100%) | #96953fFF |
Saturated and desaturated colors of #96953f
HSL Code | Preview |
---|---|
hsl(59, 10%, 42%) | |
hsl(59, 20%, 42%) | |
hsl(59, 40%, 42%) | |
hsl(59, 60%, 42%) | |
hsl(59, 80%, 42%) | |
hsl(59, 100%, 42%) |
#96953f Color Usage In CSS
body { color: #96953f; } p { color: rgb(150, 149, 63); } header { border-bottom:1px solid #96953f; }