#b0b869 Color
Color Codes | |
---|---|
Hex Code | #b0b869 |
RGB Code | rgb(176, 184, 105) |
HSL Code | hsl(66, 36%, 57%) |
#b0b869 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(176, 184, 105); }
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(66, 36%, 57%); }
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 #b0b869
RGB Code | Hex Code | Preview |
---|---|---|
rgb(176, 184, 105, 10%) | #b0b8691a | |
rgb(176, 184, 105, 20%) | #b0b86933 | |
rgb(176, 184, 105, 40%) | #b0b8694C | |
rgb(176, 184, 105, 60%) | #b0b86999 | |
rgb(176, 184, 105, 80%) | #b0b869CC | |
rgb(176, 184, 105, 100%) | #b0b869FF |
Saturated and desaturated colors of #b0b869
HSL Code | Preview |
---|---|
hsl(66, 10%, 57%) | |
hsl(66, 20%, 57%) | |
hsl(66, 40%, 57%) | |
hsl(66, 60%, 57%) | |
hsl(66, 80%, 57%) | |
hsl(66, 100%, 57%) |
#b0b869 Color Usage In CSS
body { color: #b0b869; } p { color: rgb(176, 184, 105); } header { border-bottom:1px solid #b0b869; }