#c39ced Color
Color Codes | |
---|---|
Hex Code | #c39ced |
RGB Code | rgb(195, 156, 237) |
HSL Code | hsl(269, 69%, 77%) |
#c39ced Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(195, 156, 237); }
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(269, 69%, 77%); }
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 #c39ced
RGB Code | Hex Code | Preview |
---|---|---|
rgb(195, 156, 237, 10%) | #c39ced1a | |
rgb(195, 156, 237, 20%) | #c39ced33 | |
rgb(195, 156, 237, 40%) | #c39ced4C | |
rgb(195, 156, 237, 60%) | #c39ced99 | |
rgb(195, 156, 237, 80%) | #c39cedCC | |
rgb(195, 156, 237, 100%) | #c39cedFF |
Saturated and desaturated colors of #c39ced
HSL Code | Preview |
---|---|
hsl(269, 10%, 77%) | |
hsl(269, 20%, 77%) | |
hsl(269, 40%, 77%) | |
hsl(269, 60%, 77%) | |
hsl(269, 80%, 77%) | |
hsl(269, 100%, 77%) |
#c39ced Color Usage In CSS
body { color: #c39ced; } p { color: rgb(195, 156, 237); } header { border-bottom:1px solid #c39ced; }