#80560a Color
Color Codes | |
---|---|
Hex Code | #80560a |
RGB Code | rgb(128, 86, 10) |
HSL Code | hsl(39, 86%, 27%) |
#80560a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(128, 86, 10); }
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(39, 86%, 27%); }
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 #80560a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(128, 86, 10, 10%) | #80560a1a | |
rgb(128, 86, 10, 20%) | #80560a33 | |
rgb(128, 86, 10, 40%) | #80560a4C | |
rgb(128, 86, 10, 60%) | #80560a99 | |
rgb(128, 86, 10, 80%) | #80560aCC | |
rgb(128, 86, 10, 100%) | #80560aFF |
Saturated and desaturated colors of #80560a
HSL Code | Preview |
---|---|
hsl(39, 10%, 27%) | |
hsl(39, 20%, 27%) | |
hsl(39, 40%, 27%) | |
hsl(39, 60%, 27%) | |
hsl(39, 80%, 27%) | |
hsl(39, 100%, 27%) |
#80560a Color Usage In CSS
body { color: #80560a; } p { color: rgb(128, 86, 10); } header { border-bottom:1px solid #80560a; }