#826b6c Color
Color Codes | |
---|---|
Hex Code | #826b6c |
RGB Code | rgb(130, 107, 108) |
HSL Code | hsl(357, 10%, 46%) |
#826b6c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(130, 107, 108); }
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(357, 10%, 46%); }
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 #826b6c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(130, 107, 108, 10%) | #826b6c1a | |
rgb(130, 107, 108, 20%) | #826b6c33 | |
rgb(130, 107, 108, 40%) | #826b6c4C | |
rgb(130, 107, 108, 60%) | #826b6c99 | |
rgb(130, 107, 108, 80%) | #826b6cCC | |
rgb(130, 107, 108, 100%) | #826b6cFF |
Saturated and desaturated colors of #826b6c
HSL Code | Preview |
---|---|
hsl(357, 10%, 46%) | |
hsl(357, 20%, 46%) | |
hsl(357, 40%, 46%) | |
hsl(357, 60%, 46%) | |
hsl(357, 80%, 46%) | |
hsl(357, 100%, 46%) |
#826b6c Color Usage In CSS
body { color: #826b6c; } p { color: rgb(130, 107, 108); } header { border-bottom:1px solid #826b6c; }