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