#6780eb Color
Color Codes | |
---|---|
Hex Code | #6780eb |
RGB Code | rgb(103, 128, 235) |
HSL Code | hsl(229, 77%, 66%) |
#6780eb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(103, 128, 235); }
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(229, 77%, 66%); }
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 #6780eb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(103, 128, 235, 10%) | #6780eb1a | |
rgb(103, 128, 235, 20%) | #6780eb33 | |
rgb(103, 128, 235, 40%) | #6780eb4C | |
rgb(103, 128, 235, 60%) | #6780eb99 | |
rgb(103, 128, 235, 80%) | #6780ebCC | |
rgb(103, 128, 235, 100%) | #6780ebFF |
Saturated and desaturated colors of #6780eb
HSL Code | Preview |
---|---|
hsl(229, 10%, 66%) | |
hsl(229, 20%, 66%) | |
hsl(229, 40%, 66%) | |
hsl(229, 60%, 66%) | |
hsl(229, 80%, 66%) | |
hsl(229, 100%, 66%) |
#6780eb Color Usage In CSS
body { color: #6780eb; } p { color: rgb(103, 128, 235); } header { border-bottom:1px solid #6780eb; }