#660939 Color
Color Codes | |
---|---|
Hex Code | #660939 |
RGB Code | rgb(102, 09, 57) |
HSL Code | hsl(329, 84%, 22%) |
#660939 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(102, 09, 57); }
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(329, 84%, 22%); }
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 #660939
RGB Code | Hex Code | Preview |
---|---|---|
rgb(102, 09, 57, 10%) | #6609391a | |
rgb(102, 09, 57, 20%) | #66093933 | |
rgb(102, 09, 57, 40%) | #6609394C | |
rgb(102, 09, 57, 60%) | #66093999 | |
rgb(102, 09, 57, 80%) | #660939CC | |
rgb(102, 09, 57, 100%) | #660939FF |
Saturated and desaturated colors of #660939
HSL Code | Preview |
---|---|
hsl(329, 10%, 22%) | |
hsl(329, 20%, 22%) | |
hsl(329, 40%, 22%) | |
hsl(329, 60%, 22%) | |
hsl(329, 80%, 22%) | |
hsl(329, 100%, 22%) |
#660939 Color Usage In CSS
body { color: #660939; } p { color: rgb(102, 09, 57); } header { border-bottom:1px solid #660939; }