#90731b Color
Color Codes | |
---|---|
Hex Code | #90731b |
RGB Code | rgb(144, 115, 27) |
HSL Code | hsl(45, 68%, 34%) |
#90731b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(144, 115, 27); }
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(45, 68%, 34%); }
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 #90731b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(144, 115, 27, 10%) | #90731b1a | |
rgb(144, 115, 27, 20%) | #90731b33 | |
rgb(144, 115, 27, 40%) | #90731b4C | |
rgb(144, 115, 27, 60%) | #90731b99 | |
rgb(144, 115, 27, 80%) | #90731bCC | |
rgb(144, 115, 27, 100%) | #90731bFF |
Saturated and desaturated colors of #90731b
HSL Code | Preview |
---|---|
hsl(45, 10%, 34%) | |
hsl(45, 20%, 34%) | |
hsl(45, 40%, 34%) | |
hsl(45, 60%, 34%) | |
hsl(45, 80%, 34%) | |
hsl(45, 100%, 34%) |
#90731b Color Usage In CSS
body { color: #90731b; } p { color: rgb(144, 115, 27); } header { border-bottom:1px solid #90731b; }