#987c2a Color
Color Codes | |
---|---|
Hex Code | #987c2a |
RGB Code | rgb(152, 124, 42) |
HSL Code | hsl(45, 57%, 38%) |
#987c2a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(152, 124, 42); }
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(45, 57%, 38%); }
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 #987c2a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(152, 124, 42, 10%) | #987c2a1a | |
rgb(152, 124, 42, 20%) | #987c2a33 | |
rgb(152, 124, 42, 40%) | #987c2a4C | |
rgb(152, 124, 42, 60%) | #987c2a99 | |
rgb(152, 124, 42, 80%) | #987c2aCC | |
rgb(152, 124, 42, 100%) | #987c2aFF |
Saturated and desaturated colors of #987c2a
HSL Code | Preview |
---|---|
hsl(45, 10%, 38%) | |
hsl(45, 20%, 38%) | |
hsl(45, 40%, 38%) | |
hsl(45, 60%, 38%) | |
hsl(45, 80%, 38%) | |
hsl(45, 100%, 38%) |
#987c2a Color Usage In CSS
body { color: #987c2a; } p { color: rgb(152, 124, 42); } header { border-bottom:1px solid #987c2a; }