#b4905f Color
Color Codes | |
---|---|
Hex Code | #b4905f |
RGB Code | rgb(180, 144, 95) |
HSL Code | hsl(35, 36%, 54%) |
#b4905f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(180, 144, 95); }
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(35, 36%, 54%); }
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 #b4905f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(180, 144, 95, 10%) | #b4905f1a | |
rgb(180, 144, 95, 20%) | #b4905f33 | |
rgb(180, 144, 95, 40%) | #b4905f4C | |
rgb(180, 144, 95, 60%) | #b4905f99 | |
rgb(180, 144, 95, 80%) | #b4905fCC | |
rgb(180, 144, 95, 100%) | #b4905fFF |
Saturated and desaturated colors of #b4905f
HSL Code | Preview |
---|---|
hsl(35, 10%, 54%) | |
hsl(35, 20%, 54%) | |
hsl(35, 40%, 54%) | |
hsl(35, 60%, 54%) | |
hsl(35, 80%, 54%) | |
hsl(35, 100%, 54%) |
#b4905f Color Usage In CSS
body { color: #b4905f; } p { color: rgb(180, 144, 95); } header { border-bottom:1px solid #b4905f; }