#601786 Color
Color Codes | |
---|---|
Hex Code | #601786 |
RGB Code | rgb(96, 23, 134) |
HSL Code | hsl(279, 71%, 31%) |
#601786 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(96, 23, 134); }
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(279, 71%, 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 #601786
RGB Code | Hex Code | Preview |
---|---|---|
rgb(96, 23, 134, 10%) | #6017861a | |
rgb(96, 23, 134, 20%) | #60178633 | |
rgb(96, 23, 134, 40%) | #6017864C | |
rgb(96, 23, 134, 60%) | #60178699 | |
rgb(96, 23, 134, 80%) | #601786CC | |
rgb(96, 23, 134, 100%) | #601786FF |
Saturated and desaturated colors of #601786
HSL Code | Preview |
---|---|
hsl(279, 10%, 31%) | |
hsl(279, 20%, 31%) | |
hsl(279, 40%, 31%) | |
hsl(279, 60%, 31%) | |
hsl(279, 80%, 31%) | |
hsl(279, 100%, 31%) |
#601786 Color Usage In CSS
body { color: #601786; } p { color: rgb(96, 23, 134); } header { border-bottom:1px solid #601786; }