#c39ac7 Color
Color Codes | |
---|---|
Hex Code | #c39ac7 |
RGB Code | rgb(195, 154, 199) |
HSL Code | hsl(295, 29%, 69%) |
#c39ac7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(195, 154, 199); }
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(295, 29%, 69%); }
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 #c39ac7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(195, 154, 199, 10%) | #c39ac71a | |
rgb(195, 154, 199, 20%) | #c39ac733 | |
rgb(195, 154, 199, 40%) | #c39ac74C | |
rgb(195, 154, 199, 60%) | #c39ac799 | |
rgb(195, 154, 199, 80%) | #c39ac7CC | |
rgb(195, 154, 199, 100%) | #c39ac7FF |
Saturated and desaturated colors of #c39ac7
HSL Code | Preview |
---|---|
hsl(295, 10%, 69%) | |
hsl(295, 20%, 69%) | |
hsl(295, 40%, 69%) | |
hsl(295, 60%, 69%) | |
hsl(295, 80%, 69%) | |
hsl(295, 100%, 69%) |
#c39ac7 Color Usage In CSS
body { color: #c39ac7; } p { color: rgb(195, 154, 199); } header { border-bottom:1px solid #c39ac7; }