#a90880 Color
Color Codes | |
---|---|
Hex Code | #a90880 |
RGB Code | rgb(169, 08, 128) |
HSL Code | hsl(315, 91%, 35%) |
#a90880 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(169, 08, 128); }
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(315, 91%, 35%); }
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 #a90880
RGB Code | Hex Code | Preview |
---|---|---|
rgb(169, 08, 128, 10%) | #a908801a | |
rgb(169, 08, 128, 20%) | #a9088033 | |
rgb(169, 08, 128, 40%) | #a908804C | |
rgb(169, 08, 128, 60%) | #a9088099 | |
rgb(169, 08, 128, 80%) | #a90880CC | |
rgb(169, 08, 128, 100%) | #a90880FF |
Saturated and desaturated colors of #a90880
HSL Code | Preview |
---|---|
hsl(315, 10%, 35%) | |
hsl(315, 20%, 35%) | |
hsl(315, 40%, 35%) | |
hsl(315, 60%, 35%) | |
hsl(315, 80%, 35%) | |
hsl(315, 100%, 35%) |
#a90880 Color Usage In CSS
body { color: #a90880; } p { color: rgb(169, 08, 128); } header { border-bottom:1px solid #a90880; }