#cf47b5 Color
Color Codes | |
---|---|
Hex Code | #cf47b5 |
RGB Code | rgb(207, 71, 181) |
HSL Code | hsl(311, 59%, 55%) |
#cf47b5 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(207, 71, 181); }
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(311, 59%, 55%); }
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 #cf47b5
RGB Code | Hex Code | Preview |
---|---|---|
rgb(207, 71, 181, 10%) | #cf47b51a | |
rgb(207, 71, 181, 20%) | #cf47b533 | |
rgb(207, 71, 181, 40%) | #cf47b54C | |
rgb(207, 71, 181, 60%) | #cf47b599 | |
rgb(207, 71, 181, 80%) | #cf47b5CC | |
rgb(207, 71, 181, 100%) | #cf47b5FF |
Saturated and desaturated colors of #cf47b5
HSL Code | Preview |
---|---|
hsl(311, 10%, 55%) | |
hsl(311, 20%, 55%) | |
hsl(311, 40%, 55%) | |
hsl(311, 60%, 55%) | |
hsl(311, 80%, 55%) | |
hsl(311, 100%, 55%) |
#cf47b5 Color Usage In CSS
body { color: #cf47b5; } p { color: rgb(207, 71, 181); } header { border-bottom:1px solid #cf47b5; }