#663942 Color
Color Codes | |
---|---|
Hex Code | #663942 |
RGB Code | rgb(102, 57, 66) |
HSL Code | hsl(348, 28%, 31%) |
#663942 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(102, 57, 66); }
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(348, 28%, 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 #663942
RGB Code | Hex Code | Preview |
---|---|---|
rgb(102, 57, 66, 10%) | #6639421a | |
rgb(102, 57, 66, 20%) | #66394233 | |
rgb(102, 57, 66, 40%) | #6639424C | |
rgb(102, 57, 66, 60%) | #66394299 | |
rgb(102, 57, 66, 80%) | #663942CC | |
rgb(102, 57, 66, 100%) | #663942FF |
Saturated and desaturated colors of #663942
HSL Code | Preview |
---|---|
hsl(348, 10%, 31%) | |
hsl(348, 20%, 31%) | |
hsl(348, 40%, 31%) | |
hsl(348, 60%, 31%) | |
hsl(348, 80%, 31%) | |
hsl(348, 100%, 31%) |
#663942 Color Usage In CSS
body { color: #663942; } p { color: rgb(102, 57, 66); } header { border-bottom:1px solid #663942; }