#b29634 Color
Color Codes | |
---|---|
Hex Code | #b29634 |
RGB Code | rgb(178, 150, 52) |
HSL Code | hsl(47, 55%, 45%) |
#b29634 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(178, 150, 52); }
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(47, 55%, 45%); }
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 #b29634
RGB Code | Hex Code | Preview |
---|---|---|
rgb(178, 150, 52, 10%) | #b296341a | |
rgb(178, 150, 52, 20%) | #b2963433 | |
rgb(178, 150, 52, 40%) | #b296344C | |
rgb(178, 150, 52, 60%) | #b2963499 | |
rgb(178, 150, 52, 80%) | #b29634CC | |
rgb(178, 150, 52, 100%) | #b29634FF |
Saturated and desaturated colors of #b29634
HSL Code | Preview |
---|---|
hsl(47, 10%, 45%) | |
hsl(47, 20%, 45%) | |
hsl(47, 40%, 45%) | |
hsl(47, 60%, 45%) | |
hsl(47, 80%, 45%) | |
hsl(47, 100%, 45%) |
#b29634 Color Usage In CSS
body { color: #b29634; } p { color: rgb(178, 150, 52); } header { border-bottom:1px solid #b29634; }