#a9415d Color
Color Codes | |
---|---|
Hex Code | #a9415d |
RGB Code | rgb(169, 65, 93) |
HSL Code | hsl(344, 44%, 46%) |
#a9415d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(169, 65, 93); }
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(344, 44%, 46%); }
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 #a9415d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(169, 65, 93, 10%) | #a9415d1a | |
rgb(169, 65, 93, 20%) | #a9415d33 | |
rgb(169, 65, 93, 40%) | #a9415d4C | |
rgb(169, 65, 93, 60%) | #a9415d99 | |
rgb(169, 65, 93, 80%) | #a9415dCC | |
rgb(169, 65, 93, 100%) | #a9415dFF |
Saturated and desaturated colors of #a9415d
HSL Code | Preview |
---|---|
hsl(344, 10%, 46%) | |
hsl(344, 20%, 46%) | |
hsl(344, 40%, 46%) | |
hsl(344, 60%, 46%) | |
hsl(344, 80%, 46%) | |
hsl(344, 100%, 46%) |
#a9415d Color Usage In CSS
body { color: #a9415d; } p { color: rgb(169, 65, 93); } header { border-bottom:1px solid #a9415d; }