#c53584 Color
Color Codes | |
---|---|
Hex Code | #c53584 |
RGB Code | rgb(197, 53, 132) |
HSL Code | hsl(327, 58%, 49%) |
#c53584 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(197, 53, 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(327, 58%, 49%); }
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 #c53584
RGB Code | Hex Code | Preview |
---|---|---|
rgb(197, 53, 132, 10%) | #c535841a | |
rgb(197, 53, 132, 20%) | #c5358433 | |
rgb(197, 53, 132, 40%) | #c535844C | |
rgb(197, 53, 132, 60%) | #c5358499 | |
rgb(197, 53, 132, 80%) | #c53584CC | |
rgb(197, 53, 132, 100%) | #c53584FF |
Saturated and desaturated colors of #c53584
HSL Code | Preview |
---|---|
hsl(327, 10%, 49%) | |
hsl(327, 20%, 49%) | |
hsl(327, 40%, 49%) | |
hsl(327, 60%, 49%) | |
hsl(327, 80%, 49%) | |
hsl(327, 100%, 49%) |
#c53584 Color Usage In CSS
body { color: #c53584; } p { color: rgb(197, 53, 132); } header { border-bottom:1px solid #c53584; }