#ce2293 Color
Color Codes | |
---|---|
Hex Code | #ce2293 |
RGB Code | rgb(206, 34, 147) |
HSL Code | hsl(321, 72%, 47%) |
#ce2293 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(206, 34, 147); }
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, 72%, 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 #ce2293
RGB Code | Hex Code | Preview |
---|---|---|
rgb(206, 34, 147, 10%) | #ce22931a | |
rgb(206, 34, 147, 20%) | #ce229333 | |
rgb(206, 34, 147, 40%) | #ce22934C | |
rgb(206, 34, 147, 60%) | #ce229399 | |
rgb(206, 34, 147, 80%) | #ce2293CC | |
rgb(206, 34, 147, 100%) | #ce2293FF |
Saturated and desaturated colors of #ce2293
HSL Code | Preview |
---|---|
hsl(321, 10%, 47%) | |
hsl(321, 20%, 47%) | |
hsl(321, 40%, 47%) | |
hsl(321, 60%, 47%) | |
hsl(321, 80%, 47%) | |
hsl(321, 100%, 47%) |
#ce2293 Color Usage In CSS
body { color: #ce2293; } p { color: rgb(206, 34, 147); } header { border-bottom:1px solid #ce2293; }