#b89962 Color
Color Codes | |
---|---|
Hex Code | #b89962 |
RGB Code | rgb(184, 153, 98) |
HSL Code | hsl(38, 38%, 55%) |
#b89962 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(184, 153, 98); }
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(38, 38%, 55%); }
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 #b89962
RGB Code | Hex Code | Preview |
---|---|---|
rgb(184, 153, 98, 10%) | #b899621a | |
rgb(184, 153, 98, 20%) | #b8996233 | |
rgb(184, 153, 98, 40%) | #b899624C | |
rgb(184, 153, 98, 60%) | #b8996299 | |
rgb(184, 153, 98, 80%) | #b89962CC | |
rgb(184, 153, 98, 100%) | #b89962FF |
Saturated and desaturated colors of #b89962
HSL Code | Preview |
---|---|
hsl(38, 10%, 55%) | |
hsl(38, 20%, 55%) | |
hsl(38, 40%, 55%) | |
hsl(38, 60%, 55%) | |
hsl(38, 80%, 55%) | |
hsl(38, 100%, 55%) |
#b89962 Color Usage In CSS
body { color: #b89962; } p { color: rgb(184, 153, 98); } header { border-bottom:1px solid #b89962; }