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