#660984 Color
Color Codes | |
---|---|
Hex Code | #660984 |
RGB Code | rgb(102, 09, 132) |
HSL Code | hsl(285, 87%, 28%) |
#660984 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(102, 09, 132); }
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(285, 87%, 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 #660984
RGB Code | Hex Code | Preview |
---|---|---|
rgb(102, 09, 132, 10%) | #6609841a | |
rgb(102, 09, 132, 20%) | #66098433 | |
rgb(102, 09, 132, 40%) | #6609844C | |
rgb(102, 09, 132, 60%) | #66098499 | |
rgb(102, 09, 132, 80%) | #660984CC | |
rgb(102, 09, 132, 100%) | #660984FF |
Saturated and desaturated colors of #660984
HSL Code | Preview |
---|---|
hsl(285, 10%, 28%) | |
hsl(285, 20%, 28%) | |
hsl(285, 40%, 28%) | |
hsl(285, 60%, 28%) | |
hsl(285, 80%, 28%) | |
hsl(285, 100%, 28%) |
#660984 Color Usage In CSS
body { color: #660984; } p { color: rgb(102, 09, 132); } header { border-bottom:1px solid #660984; }