#64382a Color
Color Codes | |
---|---|
Hex Code | #64382a |
RGB Code | rgb(100, 56, 42) |
HSL Code | hsl(14, 41%, 28%) |
#64382a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(100, 56, 42); }
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(14, 41%, 28%); }
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 #64382a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(100, 56, 42, 10%) | #64382a1a | |
rgb(100, 56, 42, 20%) | #64382a33 | |
rgb(100, 56, 42, 40%) | #64382a4C | |
rgb(100, 56, 42, 60%) | #64382a99 | |
rgb(100, 56, 42, 80%) | #64382aCC | |
rgb(100, 56, 42, 100%) | #64382aFF |
Saturated and desaturated colors of #64382a
HSL Code | Preview |
---|---|
hsl(14, 10%, 28%) | |
hsl(14, 20%, 28%) | |
hsl(14, 40%, 28%) | |
hsl(14, 60%, 28%) | |
hsl(14, 80%, 28%) | |
hsl(14, 100%, 28%) |
#64382a Color Usage In CSS
body { color: #64382a; } p { color: rgb(100, 56, 42); } header { border-bottom:1px solid #64382a; }