#6eacf2 Color
Color Codes | |
---|---|
Hex Code | #6eacf2 |
RGB Code | rgb(110, 172, 242) |
HSL Code | hsl(212, 84%, 69%) |
#6eacf2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(110, 172, 242); }
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(212, 84%, 69%); }
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 #6eacf2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(110, 172, 242, 10%) | #6eacf21a | |
rgb(110, 172, 242, 20%) | #6eacf233 | |
rgb(110, 172, 242, 40%) | #6eacf24C | |
rgb(110, 172, 242, 60%) | #6eacf299 | |
rgb(110, 172, 242, 80%) | #6eacf2CC | |
rgb(110, 172, 242, 100%) | #6eacf2FF |
Saturated and desaturated colors of #6eacf2
HSL Code | Preview |
---|---|
hsl(212, 10%, 69%) | |
hsl(212, 20%, 69%) | |
hsl(212, 40%, 69%) | |
hsl(212, 60%, 69%) | |
hsl(212, 80%, 69%) | |
hsl(212, 100%, 69%) |
#6eacf2 Color Usage In CSS
body { color: #6eacf2; } p { color: rgb(110, 172, 242); } header { border-bottom:1px solid #6eacf2; }