#ab2cc6 Color
Color Codes | |
---|---|
Hex Code | #ab2cc6 |
RGB Code | rgb(171, 44, 198) |
HSL Code | hsl(289, 64%, 47%) |
#ab2cc6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(171, 44, 198); }
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(289, 64%, 47%); }
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 #ab2cc6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(171, 44, 198, 10%) | #ab2cc61a | |
rgb(171, 44, 198, 20%) | #ab2cc633 | |
rgb(171, 44, 198, 40%) | #ab2cc64C | |
rgb(171, 44, 198, 60%) | #ab2cc699 | |
rgb(171, 44, 198, 80%) | #ab2cc6CC | |
rgb(171, 44, 198, 100%) | #ab2cc6FF |
Saturated and desaturated colors of #ab2cc6
HSL Code | Preview |
---|---|
hsl(289, 10%, 47%) | |
hsl(289, 20%, 47%) | |
hsl(289, 40%, 47%) | |
hsl(289, 60%, 47%) | |
hsl(289, 80%, 47%) | |
hsl(289, 100%, 47%) |
#ab2cc6 Color Usage In CSS
body { color: #ab2cc6; } p { color: rgb(171, 44, 198); } header { border-bottom:1px solid #ab2cc6; }