#bc933d Color
Color Codes | |
---|---|
Hex Code | #bc933d |
RGB Code | rgb(188, 147, 61) |
HSL Code | hsl(41, 51%, 49%) |
#bc933d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(188, 147, 61); }
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(41, 51%, 49%); }
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 #bc933d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(188, 147, 61, 10%) | #bc933d1a | |
rgb(188, 147, 61, 20%) | #bc933d33 | |
rgb(188, 147, 61, 40%) | #bc933d4C | |
rgb(188, 147, 61, 60%) | #bc933d99 | |
rgb(188, 147, 61, 80%) | #bc933dCC | |
rgb(188, 147, 61, 100%) | #bc933dFF |
Saturated and desaturated colors of #bc933d
HSL Code | Preview |
---|---|
hsl(41, 10%, 49%) | |
hsl(41, 20%, 49%) | |
hsl(41, 40%, 49%) | |
hsl(41, 60%, 49%) | |
hsl(41, 80%, 49%) | |
hsl(41, 100%, 49%) |
#bc933d Color Usage In CSS
body { color: #bc933d; } p { color: rgb(188, 147, 61); } header { border-bottom:1px solid #bc933d; }