#b3730f Color
Color Codes | |
---|---|
Hex Code | #b3730f |
RGB Code | rgb(179, 115, 15) |
HSL Code | hsl(37, 85%, 38%) |
#b3730f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(179, 115, 15); }
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(37, 85%, 38%); }
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 #b3730f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(179, 115, 15, 10%) | #b3730f1a | |
rgb(179, 115, 15, 20%) | #b3730f33 | |
rgb(179, 115, 15, 40%) | #b3730f4C | |
rgb(179, 115, 15, 60%) | #b3730f99 | |
rgb(179, 115, 15, 80%) | #b3730fCC | |
rgb(179, 115, 15, 100%) | #b3730fFF |
Saturated and desaturated colors of #b3730f
HSL Code | Preview |
---|---|
hsl(37, 10%, 38%) | |
hsl(37, 20%, 38%) | |
hsl(37, 40%, 38%) | |
hsl(37, 60%, 38%) | |
hsl(37, 80%, 38%) | |
hsl(37, 100%, 38%) |
#b3730f Color Usage In CSS
body { color: #b3730f; } p { color: rgb(179, 115, 15); } header { border-bottom:1px solid #b3730f; }