#b28450 Color
Color Codes | |
---|---|
Hex Code | #b28450 |
RGB Code | rgb(178, 132, 80) |
HSL Code | hsl(32, 39%, 51%) |
#b28450 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(178, 132, 80); }
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(32, 39%, 51%); }
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 #b28450
RGB Code | Hex Code | Preview |
---|---|---|
rgb(178, 132, 80, 10%) | #b284501a | |
rgb(178, 132, 80, 20%) | #b2845033 | |
rgb(178, 132, 80, 40%) | #b284504C | |
rgb(178, 132, 80, 60%) | #b2845099 | |
rgb(178, 132, 80, 80%) | #b28450CC | |
rgb(178, 132, 80, 100%) | #b28450FF |
Saturated and desaturated colors of #b28450
HSL Code | Preview |
---|---|
hsl(32, 10%, 51%) | |
hsl(32, 20%, 51%) | |
hsl(32, 40%, 51%) | |
hsl(32, 60%, 51%) | |
hsl(32, 80%, 51%) | |
hsl(32, 100%, 51%) |
#b28450 Color Usage In CSS
body { color: #b28450; } p { color: rgb(178, 132, 80); } header { border-bottom:1px solid #b28450; }