#997d2a Color
Color Codes | |
---|---|
Hex Code | #997d2a |
RGB Code | rgb(153, 125, 42) |
HSL Code | hsl(45, 57%, 38%) |
#997d2a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(153, 125, 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 #997d2a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(153, 125, 42, 10%) | #997d2a1a | |
rgb(153, 125, 42, 20%) | #997d2a33 | |
rgb(153, 125, 42, 40%) | #997d2a4C | |
rgb(153, 125, 42, 60%) | #997d2a99 | |
rgb(153, 125, 42, 80%) | #997d2aCC | |
rgb(153, 125, 42, 100%) | #997d2aFF |
Saturated and desaturated colors of #997d2a
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%) |
#997d2a Color Usage In CSS
body { color: #997d2a; } p { color: rgb(153, 125, 42); } header { border-bottom:1px solid #997d2a; }