#7033bf Color
Color Codes | |
---|---|
Hex Code | #7033bf |
RGB Code | rgb(112, 51, 191) |
HSL Code | hsl(266, 58%, 47%) |
#7033bf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(112, 51, 191); }
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(266, 58%, 47%); }
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 #7033bf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(112, 51, 191, 10%) | #7033bf1a | |
rgb(112, 51, 191, 20%) | #7033bf33 | |
rgb(112, 51, 191, 40%) | #7033bf4C | |
rgb(112, 51, 191, 60%) | #7033bf99 | |
rgb(112, 51, 191, 80%) | #7033bfCC | |
rgb(112, 51, 191, 100%) | #7033bfFF |
Saturated and desaturated colors of #7033bf
HSL Code | Preview |
---|---|
hsl(266, 10%, 47%) | |
hsl(266, 20%, 47%) | |
hsl(266, 40%, 47%) | |
hsl(266, 60%, 47%) | |
hsl(266, 80%, 47%) | |
hsl(266, 100%, 47%) |
#7033bf Color Usage In CSS
body { color: #7033bf; } p { color: rgb(112, 51, 191); } header { border-bottom:1px solid #7033bf; }