#c893e1 Color
Color Codes | |
---|---|
Hex Code | #c893e1 |
RGB Code | rgb(200, 147, 225) |
HSL Code | hsl(281, 57%, 73%) |
#c893e1 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(200, 147, 225); }
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(281, 57%, 73%); }
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 #c893e1
RGB Code | Hex Code | Preview |
---|---|---|
rgb(200, 147, 225, 10%) | #c893e11a | |
rgb(200, 147, 225, 20%) | #c893e133 | |
rgb(200, 147, 225, 40%) | #c893e14C | |
rgb(200, 147, 225, 60%) | #c893e199 | |
rgb(200, 147, 225, 80%) | #c893e1CC | |
rgb(200, 147, 225, 100%) | #c893e1FF |
Saturated and desaturated colors of #c893e1
HSL Code | Preview |
---|---|
hsl(281, 10%, 73%) | |
hsl(281, 20%, 73%) | |
hsl(281, 40%, 73%) | |
hsl(281, 60%, 73%) | |
hsl(281, 80%, 73%) | |
hsl(281, 100%, 73%) |
#c893e1 Color Usage In CSS
body { color: #c893e1; } p { color: rgb(200, 147, 225); } header { border-bottom:1px solid #c893e1; }