#7805de Color
Color Codes | |
---|---|
Hex Code | #7805de |
RGB Code | rgb(120, 05, 222) |
HSL Code | hsl(272, 96%, 45%) |
#7805de Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(120, 05, 222); }
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(272, 96%, 45%); }
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 #7805de
RGB Code | Hex Code | Preview |
---|---|---|
rgb(120, 05, 222, 10%) | #7805de1a | |
rgb(120, 05, 222, 20%) | #7805de33 | |
rgb(120, 05, 222, 40%) | #7805de4C | |
rgb(120, 05, 222, 60%) | #7805de99 | |
rgb(120, 05, 222, 80%) | #7805deCC | |
rgb(120, 05, 222, 100%) | #7805deFF |
Saturated and desaturated colors of #7805de
HSL Code | Preview |
---|---|
hsl(272, 10%, 45%) | |
hsl(272, 20%, 45%) | |
hsl(272, 40%, 45%) | |
hsl(272, 60%, 45%) | |
hsl(272, 80%, 45%) | |
hsl(272, 100%, 45%) |
#7805de Color Usage In CSS
body { color: #7805de; } p { color: rgb(120, 05, 222); } header { border-bottom:1px solid #7805de; }