#b14033 Color
Color Codes | |
---|---|
Hex Code | #b14033 |
RGB Code | rgb(177, 64, 51) |
HSL Code | hsl(6, 55%, 45%) |
#b14033 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(177, 64, 51); }
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(6, 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 #b14033
RGB Code | Hex Code | Preview |
---|---|---|
rgb(177, 64, 51, 10%) | #b140331a | |
rgb(177, 64, 51, 20%) | #b1403333 | |
rgb(177, 64, 51, 40%) | #b140334C | |
rgb(177, 64, 51, 60%) | #b1403399 | |
rgb(177, 64, 51, 80%) | #b14033CC | |
rgb(177, 64, 51, 100%) | #b14033FF |
Saturated and desaturated colors of #b14033
HSL Code | Preview |
---|---|
hsl(6, 10%, 45%) | |
hsl(6, 20%, 45%) | |
hsl(6, 40%, 45%) | |
hsl(6, 60%, 45%) | |
hsl(6, 80%, 45%) | |
hsl(6, 100%, 45%) |
#b14033 Color Usage In CSS
body { color: #b14033; } p { color: rgb(177, 64, 51); } header { border-bottom:1px solid #b14033; }