#c32d64 Color
Color Codes | |
---|---|
Hex Code | #c32d64 |
RGB Code | rgb(195, 45, 100) |
HSL Code | hsl(338, 63%, 47%) |
#c32d64 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(195, 45, 100); }
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(338, 63%, 47%); }
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 #c32d64
RGB Code | Hex Code | Preview |
---|---|---|
rgb(195, 45, 100, 10%) | #c32d641a | |
rgb(195, 45, 100, 20%) | #c32d6433 | |
rgb(195, 45, 100, 40%) | #c32d644C | |
rgb(195, 45, 100, 60%) | #c32d6499 | |
rgb(195, 45, 100, 80%) | #c32d64CC | |
rgb(195, 45, 100, 100%) | #c32d64FF |
Saturated and desaturated colors of #c32d64
HSL Code | Preview |
---|---|
hsl(338, 10%, 47%) | |
hsl(338, 20%, 47%) | |
hsl(338, 40%, 47%) | |
hsl(338, 60%, 47%) | |
hsl(338, 80%, 47%) | |
hsl(338, 100%, 47%) |
#c32d64 Color Usage In CSS
body { color: #c32d64; } p { color: rgb(195, 45, 100); } header { border-bottom:1px solid #c32d64; }