#82802e Color
Color Codes | |
---|---|
Hex Code | #82802e |
RGB Code | rgb(130, 128, 46) |
HSL Code | hsl(59, 48%, 35%) |
#82802e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(130, 128, 46); }
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, 48%, 35%); }
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 #82802e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(130, 128, 46, 10%) | #82802e1a | |
rgb(130, 128, 46, 20%) | #82802e33 | |
rgb(130, 128, 46, 40%) | #82802e4C | |
rgb(130, 128, 46, 60%) | #82802e99 | |
rgb(130, 128, 46, 80%) | #82802eCC | |
rgb(130, 128, 46, 100%) | #82802eFF |
Saturated and desaturated colors of #82802e
HSL Code | Preview |
---|---|
hsl(59, 10%, 35%) | |
hsl(59, 20%, 35%) | |
hsl(59, 40%, 35%) | |
hsl(59, 60%, 35%) | |
hsl(59, 80%, 35%) | |
hsl(59, 100%, 35%) |
#82802e Color Usage In CSS
body { color: #82802e; } p { color: rgb(130, 128, 46); } header { border-bottom:1px solid #82802e; }