#828432 Color
Color Codes | |
---|---|
Hex Code | #828432 |
RGB Code | rgb(130, 132, 50) |
HSL Code | hsl(61, 45%, 36%) |
#828432 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(130, 132, 50); }
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(61, 45%, 36%); }
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 #828432
RGB Code | Hex Code | Preview |
---|---|---|
rgb(130, 132, 50, 10%) | #8284321a | |
rgb(130, 132, 50, 20%) | #82843233 | |
rgb(130, 132, 50, 40%) | #8284324C | |
rgb(130, 132, 50, 60%) | #82843299 | |
rgb(130, 132, 50, 80%) | #828432CC | |
rgb(130, 132, 50, 100%) | #828432FF |
Saturated and desaturated colors of #828432
HSL Code | Preview |
---|---|
hsl(61, 10%, 36%) | |
hsl(61, 20%, 36%) | |
hsl(61, 40%, 36%) | |
hsl(61, 60%, 36%) | |
hsl(61, 80%, 36%) | |
hsl(61, 100%, 36%) |
#828432 Color Usage In CSS
body { color: #828432; } p { color: rgb(130, 132, 50); } header { border-bottom:1px solid #828432; }