#ce66aa Color
Color Codes | |
---|---|
Hex Code | #ce66aa |
RGB Code | rgb(206, 102, 170) |
HSL Code | hsl(321, 51%, 60%) |
#ce66aa Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(206, 102, 170); }
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(321, 51%, 60%); }
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 #ce66aa
RGB Code | Hex Code | Preview |
---|---|---|
rgb(206, 102, 170, 10%) | #ce66aa1a | |
rgb(206, 102, 170, 20%) | #ce66aa33 | |
rgb(206, 102, 170, 40%) | #ce66aa4C | |
rgb(206, 102, 170, 60%) | #ce66aa99 | |
rgb(206, 102, 170, 80%) | #ce66aaCC | |
rgb(206, 102, 170, 100%) | #ce66aaFF |
Saturated and desaturated colors of #ce66aa
HSL Code | Preview |
---|---|
hsl(321, 10%, 60%) | |
hsl(321, 20%, 60%) | |
hsl(321, 40%, 60%) | |
hsl(321, 60%, 60%) | |
hsl(321, 80%, 60%) | |
hsl(321, 100%, 60%) |
#ce66aa Color Usage In CSS
body { color: #ce66aa; } p { color: rgb(206, 102, 170); } header { border-bottom:1px solid #ce66aa; }