#762a9d Color
Color Codes | |
---|---|
Hex Code | #762a9d |
RGB Code | rgb(118, 42, 157) |
HSL Code | hsl(280, 58%, 39%) |
#762a9d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(118, 42, 157); }
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(280, 58%, 39%); }
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 #762a9d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(118, 42, 157, 10%) | #762a9d1a | |
rgb(118, 42, 157, 20%) | #762a9d33 | |
rgb(118, 42, 157, 40%) | #762a9d4C | |
rgb(118, 42, 157, 60%) | #762a9d99 | |
rgb(118, 42, 157, 80%) | #762a9dCC | |
rgb(118, 42, 157, 100%) | #762a9dFF |
Saturated and desaturated colors of #762a9d
HSL Code | Preview |
---|---|
hsl(280, 10%, 39%) | |
hsl(280, 20%, 39%) | |
hsl(280, 40%, 39%) | |
hsl(280, 60%, 39%) | |
hsl(280, 80%, 39%) | |
hsl(280, 100%, 39%) |
#762a9d Color Usage In CSS
body { color: #762a9d; } p { color: rgb(118, 42, 157); } header { border-bottom:1px solid #762a9d; }