#7562f6 Color
Color Codes | |
---|---|
Hex Code | #7562f6 |
RGB Code | rgb(117, 98, 246) |
HSL Code | hsl(248, 89%, 67%) |
#7562f6 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(117, 98, 246); }
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(248, 89%, 67%); }
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 #7562f6
RGB Code | Hex Code | Preview |
---|---|---|
rgb(117, 98, 246, 10%) | #7562f61a | |
rgb(117, 98, 246, 20%) | #7562f633 | |
rgb(117, 98, 246, 40%) | #7562f64C | |
rgb(117, 98, 246, 60%) | #7562f699 | |
rgb(117, 98, 246, 80%) | #7562f6CC | |
rgb(117, 98, 246, 100%) | #7562f6FF |
Saturated and desaturated colors of #7562f6
HSL Code | Preview |
---|---|
hsl(248, 10%, 67%) | |
hsl(248, 20%, 67%) | |
hsl(248, 40%, 67%) | |
hsl(248, 60%, 67%) | |
hsl(248, 80%, 67%) | |
hsl(248, 100%, 67%) |
#7562f6 Color Usage In CSS
body { color: #7562f6; } p { color: rgb(117, 98, 246); } header { border-bottom:1px solid #7562f6; }