#6a643e Color
Color Codes | |
---|---|
Hex Code | #6a643e |
RGB Code | rgb(106, 100, 62) |
HSL Code | hsl(52, 26%, 33%) |
#6a643e Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(106, 100, 62); }
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(52, 26%, 33%); }
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 #6a643e
RGB Code | Hex Code | Preview |
---|---|---|
rgb(106, 100, 62, 10%) | #6a643e1a | |
rgb(106, 100, 62, 20%) | #6a643e33 | |
rgb(106, 100, 62, 40%) | #6a643e4C | |
rgb(106, 100, 62, 60%) | #6a643e99 | |
rgb(106, 100, 62, 80%) | #6a643eCC | |
rgb(106, 100, 62, 100%) | #6a643eFF |
Saturated and desaturated colors of #6a643e
HSL Code | Preview |
---|---|
hsl(52, 10%, 33%) | |
hsl(52, 20%, 33%) | |
hsl(52, 40%, 33%) | |
hsl(52, 60%, 33%) | |
hsl(52, 80%, 33%) | |
hsl(52, 100%, 33%) |
#6a643e Color Usage In CSS
body { color: #6a643e; } p { color: rgb(106, 100, 62); } header { border-bottom:1px solid #6a643e; }