#c576e2 Color
Color Codes | |
---|---|
Hex Code | #c576e2 |
RGB Code | rgb(197, 118, 226) |
HSL Code | hsl(284, 65%, 67%) |
#c576e2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(197, 118, 226); }
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(284, 65%, 67%); }
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 #c576e2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(197, 118, 226, 10%) | #c576e21a | |
rgb(197, 118, 226, 20%) | #c576e233 | |
rgb(197, 118, 226, 40%) | #c576e24C | |
rgb(197, 118, 226, 60%) | #c576e299 | |
rgb(197, 118, 226, 80%) | #c576e2CC | |
rgb(197, 118, 226, 100%) | #c576e2FF |
Saturated and desaturated colors of #c576e2
HSL Code | Preview |
---|---|
hsl(284, 10%, 67%) | |
hsl(284, 20%, 67%) | |
hsl(284, 40%, 67%) | |
hsl(284, 60%, 67%) | |
hsl(284, 80%, 67%) | |
hsl(284, 100%, 67%) |
#c576e2 Color Usage In CSS
body { color: #c576e2; } p { color: rgb(197, 118, 226); } header { border-bottom:1px solid #c576e2; }