#b0b578 Color
Color Codes | |
---|---|
Hex Code | #b0b578 |
RGB Code | rgb(176, 181, 120) |
HSL Code | hsl(65, 29%, 59%) |
#b0b578 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(176, 181, 120); }
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(65, 29%, 59%); }
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 #b0b578
RGB Code | Hex Code | Preview |
---|---|---|
rgb(176, 181, 120, 10%) | #b0b5781a | |
rgb(176, 181, 120, 20%) | #b0b57833 | |
rgb(176, 181, 120, 40%) | #b0b5784C | |
rgb(176, 181, 120, 60%) | #b0b57899 | |
rgb(176, 181, 120, 80%) | #b0b578CC | |
rgb(176, 181, 120, 100%) | #b0b578FF |
Saturated and desaturated colors of #b0b578
HSL Code | Preview |
---|---|
hsl(65, 10%, 59%) | |
hsl(65, 20%, 59%) | |
hsl(65, 40%, 59%) | |
hsl(65, 60%, 59%) | |
hsl(65, 80%, 59%) | |
hsl(65, 100%, 59%) |
#b0b578 Color Usage In CSS
body { color: #b0b578; } p { color: rgb(176, 181, 120); } header { border-bottom:1px solid #b0b578; }