#720972 Color
Color Codes | |
---|---|
Hex Code | #720972 |
RGB Code | rgb(114, 09, 114) |
HSL Code | hsl(300, 85%, 24%) |
#720972 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(114, 09, 114); }
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(300, 85%, 24%); }
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 #720972
RGB Code | Hex Code | Preview |
---|---|---|
rgb(114, 09, 114, 10%) | #7209721a | |
rgb(114, 09, 114, 20%) | #72097233 | |
rgb(114, 09, 114, 40%) | #7209724C | |
rgb(114, 09, 114, 60%) | #72097299 | |
rgb(114, 09, 114, 80%) | #720972CC | |
rgb(114, 09, 114, 100%) | #720972FF |
Saturated and desaturated colors of #720972
HSL Code | Preview |
---|---|
hsl(300, 10%, 24%) | |
hsl(300, 20%, 24%) | |
hsl(300, 40%, 24%) | |
hsl(300, 60%, 24%) | |
hsl(300, 80%, 24%) | |
hsl(300, 100%, 24%) |
#720972 Color Usage In CSS
body { color: #720972; } p { color: rgb(114, 09, 114); } header { border-bottom:1px solid #720972; }