#855b19 Color
Color Codes | |
---|---|
Hex Code | #855b19 |
RGB Code | rgb(133, 91, 25) |
HSL Code | hsl(37, 68%, 31%) |
#855b19 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(133, 91, 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(37, 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 #855b19
RGB Code | Hex Code | Preview |
---|---|---|
rgb(133, 91, 25, 10%) | #855b191a | |
rgb(133, 91, 25, 20%) | #855b1933 | |
rgb(133, 91, 25, 40%) | #855b194C | |
rgb(133, 91, 25, 60%) | #855b1999 | |
rgb(133, 91, 25, 80%) | #855b19CC | |
rgb(133, 91, 25, 100%) | #855b19FF |
Saturated and desaturated colors of #855b19
HSL Code | Preview |
---|---|
hsl(37, 10%, 31%) | |
hsl(37, 20%, 31%) | |
hsl(37, 40%, 31%) | |
hsl(37, 60%, 31%) | |
hsl(37, 80%, 31%) | |
hsl(37, 100%, 31%) |
#855b19 Color Usage In CSS
body { color: #855b19; } p { color: rgb(133, 91, 25); } header { border-bottom:1px solid #855b19; }