#d853da Color
Color Codes | |
---|---|
Hex Code | #d853da |
RGB Code | rgb(216, 83, 218) |
HSL Code | hsl(299, 65%, 59%) |
#d853da Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(216, 83, 218); }
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(299, 65%, 59%); }
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 #d853da
RGB Code | Hex Code | Preview |
---|---|---|
rgb(216, 83, 218, 10%) | #d853da1a | |
rgb(216, 83, 218, 20%) | #d853da33 | |
rgb(216, 83, 218, 40%) | #d853da4C | |
rgb(216, 83, 218, 60%) | #d853da99 | |
rgb(216, 83, 218, 80%) | #d853daCC | |
rgb(216, 83, 218, 100%) | #d853daFF |
Saturated and desaturated colors of #d853da
HSL Code | Preview |
---|---|
hsl(299, 10%, 59%) | |
hsl(299, 20%, 59%) | |
hsl(299, 40%, 59%) | |
hsl(299, 60%, 59%) | |
hsl(299, 80%, 59%) | |
hsl(299, 100%, 59%) |
#d853da Color Usage In CSS
body { color: #d853da; } p { color: rgb(216, 83, 218); } header { border-bottom:1px solid #d853da; }