#b44120 Color
Color Codes | |
---|---|
Hex Code | #b44120 |
RGB Code | rgb(180, 65, 32) |
HSL Code | hsl(13, 70%, 42%) |
#b44120 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(180, 65, 32); }
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(13, 70%, 42%); }
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 #b44120
RGB Code | Hex Code | Preview |
---|---|---|
rgb(180, 65, 32, 10%) | #b441201a | |
rgb(180, 65, 32, 20%) | #b4412033 | |
rgb(180, 65, 32, 40%) | #b441204C | |
rgb(180, 65, 32, 60%) | #b4412099 | |
rgb(180, 65, 32, 80%) | #b44120CC | |
rgb(180, 65, 32, 100%) | #b44120FF |
Saturated and desaturated colors of #b44120
HSL Code | Preview |
---|---|
hsl(13, 10%, 42%) | |
hsl(13, 20%, 42%) | |
hsl(13, 40%, 42%) | |
hsl(13, 60%, 42%) | |
hsl(13, 80%, 42%) | |
hsl(13, 100%, 42%) |
#b44120 Color Usage In CSS
body { color: #b44120; } p { color: rgb(180, 65, 32); } header { border-bottom:1px solid #b44120; }