#bb772f Color
Color Codes | |
---|---|
Hex Code | #bb772f |
RGB Code | rgb(187, 119, 47) |
HSL Code | hsl(31, 60%, 46%) |
#bb772f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(187, 119, 47); }
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(31, 60%, 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 #bb772f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(187, 119, 47, 10%) | #bb772f1a | |
rgb(187, 119, 47, 20%) | #bb772f33 | |
rgb(187, 119, 47, 40%) | #bb772f4C | |
rgb(187, 119, 47, 60%) | #bb772f99 | |
rgb(187, 119, 47, 80%) | #bb772fCC | |
rgb(187, 119, 47, 100%) | #bb772fFF |
Saturated and desaturated colors of #bb772f
HSL Code | Preview |
---|---|
hsl(31, 10%, 46%) | |
hsl(31, 20%, 46%) | |
hsl(31, 40%, 46%) | |
hsl(31, 60%, 46%) | |
hsl(31, 80%, 46%) | |
hsl(31, 100%, 46%) |
#bb772f Color Usage In CSS
body { color: #bb772f; } p { color: rgb(187, 119, 47); } header { border-bottom:1px solid #bb772f; }