#836650 Color
Color Codes | |
---|---|
Hex Code | #836650 |
RGB Code | rgb(131, 102, 80) |
HSL Code | hsl(26, 24%, 41%) |
#836650 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(131, 102, 80); }
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(26, 24%, 41%); }
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 #836650
RGB Code | Hex Code | Preview |
---|---|---|
rgb(131, 102, 80, 10%) | #8366501a | |
rgb(131, 102, 80, 20%) | #83665033 | |
rgb(131, 102, 80, 40%) | #8366504C | |
rgb(131, 102, 80, 60%) | #83665099 | |
rgb(131, 102, 80, 80%) | #836650CC | |
rgb(131, 102, 80, 100%) | #836650FF |
Saturated and desaturated colors of #836650
HSL Code | Preview |
---|---|
hsl(26, 10%, 41%) | |
hsl(26, 20%, 41%) | |
hsl(26, 40%, 41%) | |
hsl(26, 60%, 41%) | |
hsl(26, 80%, 41%) | |
hsl(26, 100%, 41%) |
#836650 Color Usage In CSS
body { color: #836650; } p { color: rgb(131, 102, 80); } header { border-bottom:1px solid #836650; }