#ca8196 Color
Color Codes | |
---|---|
Hex Code | #ca8196 |
RGB Code | rgb(202, 129, 150) |
HSL Code | hsl(343, 41%, 65%) |
#ca8196 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(202, 129, 150); }
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(343, 41%, 65%); }
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 #ca8196
RGB Code | Hex Code | Preview |
---|---|---|
rgb(202, 129, 150, 10%) | #ca81961a | |
rgb(202, 129, 150, 20%) | #ca819633 | |
rgb(202, 129, 150, 40%) | #ca81964C | |
rgb(202, 129, 150, 60%) | #ca819699 | |
rgb(202, 129, 150, 80%) | #ca8196CC | |
rgb(202, 129, 150, 100%) | #ca8196FF |
Saturated and desaturated colors of #ca8196
HSL Code | Preview |
---|---|
hsl(343, 10%, 65%) | |
hsl(343, 20%, 65%) | |
hsl(343, 40%, 65%) | |
hsl(343, 60%, 65%) | |
hsl(343, 80%, 65%) | |
hsl(343, 100%, 65%) |
#ca8196 Color Usage In CSS
body { color: #ca8196; } p { color: rgb(202, 129, 150); } header { border-bottom:1px solid #ca8196; }