#ce019f Color
Color Codes | |
---|---|
Hex Code | #ce019f |
RGB Code | rgb(206, 01, 159) |
HSL Code | hsl(314, 99%, 41%) |
#ce019f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(206, 01, 159); }
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(314, 99%, 41%); }
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 #ce019f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(206, 01, 159, 10%) | #ce019f1a | |
rgb(206, 01, 159, 20%) | #ce019f33 | |
rgb(206, 01, 159, 40%) | #ce019f4C | |
rgb(206, 01, 159, 60%) | #ce019f99 | |
rgb(206, 01, 159, 80%) | #ce019fCC | |
rgb(206, 01, 159, 100%) | #ce019fFF |
Saturated and desaturated colors of #ce019f
HSL Code | Preview |
---|---|
hsl(314, 10%, 41%) | |
hsl(314, 20%, 41%) | |
hsl(314, 40%, 41%) | |
hsl(314, 60%, 41%) | |
hsl(314, 80%, 41%) | |
hsl(314, 100%, 41%) |
#ce019f Color Usage In CSS
body { color: #ce019f; } p { color: rgb(206, 01, 159); } header { border-bottom:1px solid #ce019f; }