#858264 Color
Color Codes | |
---|---|
Hex Code | #858264 |
RGB Code | rgb(133, 130, 100) |
HSL Code | hsl(55, 14%, 46%) |
#858264 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(133, 130, 100); }
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(55, 14%, 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 #858264
RGB Code | Hex Code | Preview |
---|---|---|
rgb(133, 130, 100, 10%) | #8582641a | |
rgb(133, 130, 100, 20%) | #85826433 | |
rgb(133, 130, 100, 40%) | #8582644C | |
rgb(133, 130, 100, 60%) | #85826499 | |
rgb(133, 130, 100, 80%) | #858264CC | |
rgb(133, 130, 100, 100%) | #858264FF |
Saturated and desaturated colors of #858264
HSL Code | Preview |
---|---|
hsl(55, 10%, 46%) | |
hsl(55, 20%, 46%) | |
hsl(55, 40%, 46%) | |
hsl(55, 60%, 46%) | |
hsl(55, 80%, 46%) | |
hsl(55, 100%, 46%) |
#858264 Color Usage In CSS
body { color: #858264; } p { color: rgb(133, 130, 100); } header { border-bottom:1px solid #858264; }