#b87229 Color
Color Codes | |
---|---|
Hex Code | #b87229 |
RGB Code | rgb(184, 114, 41) |
HSL Code | hsl(31, 64%, 44%) |
#b87229 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(184, 114, 41); }
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, 64%, 44%); }
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 #b87229
RGB Code | Hex Code | Preview |
---|---|---|
rgb(184, 114, 41, 10%) | #b872291a | |
rgb(184, 114, 41, 20%) | #b8722933 | |
rgb(184, 114, 41, 40%) | #b872294C | |
rgb(184, 114, 41, 60%) | #b8722999 | |
rgb(184, 114, 41, 80%) | #b87229CC | |
rgb(184, 114, 41, 100%) | #b87229FF |
Saturated and desaturated colors of #b87229
HSL Code | Preview |
---|---|
hsl(31, 10%, 44%) | |
hsl(31, 20%, 44%) | |
hsl(31, 40%, 44%) | |
hsl(31, 60%, 44%) | |
hsl(31, 80%, 44%) | |
hsl(31, 100%, 44%) |
#b87229 Color Usage In CSS
body { color: #b87229; } p { color: rgb(184, 114, 41); } header { border-bottom:1px solid #b87229; }