#d686cd Color
Color Codes | |
---|---|
Hex Code | #d686cd |
RGB Code | rgb(214, 134, 205) |
HSL Code | hsl(307, 49%, 68%) |
#d686cd Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(214, 134, 205); }
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(307, 49%, 68%); }
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 #d686cd
RGB Code | Hex Code | Preview |
---|---|---|
rgb(214, 134, 205, 10%) | #d686cd1a | |
rgb(214, 134, 205, 20%) | #d686cd33 | |
rgb(214, 134, 205, 40%) | #d686cd4C | |
rgb(214, 134, 205, 60%) | #d686cd99 | |
rgb(214, 134, 205, 80%) | #d686cdCC | |
rgb(214, 134, 205, 100%) | #d686cdFF |
Saturated and desaturated colors of #d686cd
HSL Code | Preview |
---|---|
hsl(307, 10%, 68%) | |
hsl(307, 20%, 68%) | |
hsl(307, 40%, 68%) | |
hsl(307, 60%, 68%) | |
hsl(307, 80%, 68%) | |
hsl(307, 100%, 68%) |
#d686cd Color Usage In CSS
body { color: #d686cd; } p { color: rgb(214, 134, 205); } header { border-bottom:1px solid #d686cd; }