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