#a43489 Color
Color Codes | |
---|---|
Hex Code | #a43489 |
RGB Code | rgb(164, 52, 137) |
HSL Code | hsl(314, 52%, 42%) |
#a43489 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(164, 52, 137); }
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(314, 52%, 42%); }
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 #a43489
RGB Code | Hex Code | Preview |
---|---|---|
rgb(164, 52, 137, 10%) | #a434891a | |
rgb(164, 52, 137, 20%) | #a4348933 | |
rgb(164, 52, 137, 40%) | #a434894C | |
rgb(164, 52, 137, 60%) | #a4348999 | |
rgb(164, 52, 137, 80%) | #a43489CC | |
rgb(164, 52, 137, 100%) | #a43489FF |
Saturated and desaturated colors of #a43489
HSL Code | Preview |
---|---|
hsl(314, 10%, 42%) | |
hsl(314, 20%, 42%) | |
hsl(314, 40%, 42%) | |
hsl(314, 60%, 42%) | |
hsl(314, 80%, 42%) | |
hsl(314, 100%, 42%) |
#a43489 Color Usage In CSS
body { color: #a43489; } p { color: rgb(164, 52, 137); } header { border-bottom:1px solid #a43489; }