#836819 Color
Color Codes | |
---|---|
Hex Code | #836819 |
RGB Code | rgb(131, 104, 25) |
HSL Code | hsl(45, 68%, 31%) |
#836819 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(131, 104, 25); }
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, 68%, 31%); }
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 #836819
RGB Code | Hex Code | Preview |
---|---|---|
rgb(131, 104, 25, 10%) | #8368191a | |
rgb(131, 104, 25, 20%) | #83681933 | |
rgb(131, 104, 25, 40%) | #8368194C | |
rgb(131, 104, 25, 60%) | #83681999 | |
rgb(131, 104, 25, 80%) | #836819CC | |
rgb(131, 104, 25, 100%) | #836819FF |
Saturated and desaturated colors of #836819
HSL Code | Preview |
---|---|
hsl(45, 10%, 31%) | |
hsl(45, 20%, 31%) | |
hsl(45, 40%, 31%) | |
hsl(45, 60%, 31%) | |
hsl(45, 80%, 31%) | |
hsl(45, 100%, 31%) |
#836819 Color Usage In CSS
body { color: #836819; } p { color: rgb(131, 104, 25); } header { border-bottom:1px solid #836819; }