#b09440 Color
Color Codes | |
---|---|
Hex Code | #b09440 |
RGB Code | rgb(176, 148, 64) |
HSL Code | hsl(45, 47%, 47%) |
#b09440 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(176, 148, 64); }
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(45, 47%, 47%); }
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 #b09440
RGB Code | Hex Code | Preview |
---|---|---|
rgb(176, 148, 64, 10%) | #b094401a | |
rgb(176, 148, 64, 20%) | #b0944033 | |
rgb(176, 148, 64, 40%) | #b094404C | |
rgb(176, 148, 64, 60%) | #b0944099 | |
rgb(176, 148, 64, 80%) | #b09440CC | |
rgb(176, 148, 64, 100%) | #b09440FF |
Saturated and desaturated colors of #b09440
HSL Code | Preview |
---|---|
hsl(45, 10%, 47%) | |
hsl(45, 20%, 47%) | |
hsl(45, 40%, 47%) | |
hsl(45, 60%, 47%) | |
hsl(45, 80%, 47%) | |
hsl(45, 100%, 47%) |
#b09440 Color Usage In CSS
body { color: #b09440; } p { color: rgb(176, 148, 64); } header { border-bottom:1px solid #b09440; }