#c3779b Color
Color Codes | |
---|---|
Hex Code | #c3779b |
RGB Code | rgb(195, 119, 155) |
HSL Code | hsl(332, 39%, 62%) |
#c3779b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(195, 119, 155); }
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(332, 39%, 62%); }
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 #c3779b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(195, 119, 155, 10%) | #c3779b1a | |
rgb(195, 119, 155, 20%) | #c3779b33 | |
rgb(195, 119, 155, 40%) | #c3779b4C | |
rgb(195, 119, 155, 60%) | #c3779b99 | |
rgb(195, 119, 155, 80%) | #c3779bCC | |
rgb(195, 119, 155, 100%) | #c3779bFF |
Saturated and desaturated colors of #c3779b
HSL Code | Preview |
---|---|
hsl(332, 10%, 62%) | |
hsl(332, 20%, 62%) | |
hsl(332, 40%, 62%) | |
hsl(332, 60%, 62%) | |
hsl(332, 80%, 62%) | |
hsl(332, 100%, 62%) |
#c3779b Color Usage In CSS
body { color: #c3779b; } p { color: rgb(195, 119, 155); } header { border-bottom:1px solid #c3779b; }