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