#7a610b Color
Color Codes | |
---|---|
Hex Code | #7a610b |
RGB Code | rgb(122, 97, 11) |
HSL Code | hsl(46, 83%, 26%) |
#7a610b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(122, 97, 11); }
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(46, 83%, 26%); }
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 #7a610b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(122, 97, 11, 10%) | #7a610b1a | |
rgb(122, 97, 11, 20%) | #7a610b33 | |
rgb(122, 97, 11, 40%) | #7a610b4C | |
rgb(122, 97, 11, 60%) | #7a610b99 | |
rgb(122, 97, 11, 80%) | #7a610bCC | |
rgb(122, 97, 11, 100%) | #7a610bFF |
Saturated and desaturated colors of #7a610b
HSL Code | Preview |
---|---|
hsl(46, 10%, 26%) | |
hsl(46, 20%, 26%) | |
hsl(46, 40%, 26%) | |
hsl(46, 60%, 26%) | |
hsl(46, 80%, 26%) | |
hsl(46, 100%, 26%) |
#7a610b Color Usage In CSS
body { color: #7a610b; } p { color: rgb(122, 97, 11); } header { border-bottom:1px solid #7a610b; }