#b49849 Color
Color Codes | |
---|---|
Hex Code | #b49849 |
RGB Code | rgb(180, 152, 73) |
HSL Code | hsl(44, 42%, 50%) |
#b49849 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(180, 152, 73); }
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(44, 42%, 50%); }
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 #b49849
RGB Code | Hex Code | Preview |
---|---|---|
rgb(180, 152, 73, 10%) | #b498491a | |
rgb(180, 152, 73, 20%) | #b4984933 | |
rgb(180, 152, 73, 40%) | #b498494C | |
rgb(180, 152, 73, 60%) | #b4984999 | |
rgb(180, 152, 73, 80%) | #b49849CC | |
rgb(180, 152, 73, 100%) | #b49849FF |
Saturated and desaturated colors of #b49849
HSL Code | Preview |
---|---|
hsl(44, 10%, 50%) | |
hsl(44, 20%, 50%) | |
hsl(44, 40%, 50%) | |
hsl(44, 60%, 50%) | |
hsl(44, 80%, 50%) | |
hsl(44, 100%, 50%) |
#b49849 Color Usage In CSS
body { color: #b49849; } p { color: rgb(180, 152, 73); } header { border-bottom:1px solid #b49849; }