#64544c Color
Color Codes | |
---|---|
Hex Code | #64544c |
RGB Code | rgb(100, 84, 76) |
HSL Code | hsl(20, 14%, 35%) |
#64544c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(100, 84, 76); }
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(20, 14%, 35%); }
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 #64544c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(100, 84, 76, 10%) | #64544c1a | |
rgb(100, 84, 76, 20%) | #64544c33 | |
rgb(100, 84, 76, 40%) | #64544c4C | |
rgb(100, 84, 76, 60%) | #64544c99 | |
rgb(100, 84, 76, 80%) | #64544cCC | |
rgb(100, 84, 76, 100%) | #64544cFF |
Saturated and desaturated colors of #64544c
HSL Code | Preview |
---|---|
hsl(20, 10%, 35%) | |
hsl(20, 20%, 35%) | |
hsl(20, 40%, 35%) | |
hsl(20, 60%, 35%) | |
hsl(20, 80%, 35%) | |
hsl(20, 100%, 35%) |
#64544c Color Usage In CSS
body { color: #64544c; } p { color: rgb(100, 84, 76); } header { border-bottom:1px solid #64544c; }