#6aa9f5 Color
Color Codes | |
---|---|
Hex Code | #6aa9f5 |
RGB Code | rgb(106, 169, 245) |
HSL Code | hsl(213, 87%, 69%) |
#6aa9f5 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(106, 169, 245); }
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(213, 87%, 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 #6aa9f5
RGB Code | Hex Code | Preview |
---|---|---|
rgb(106, 169, 245, 10%) | #6aa9f51a | |
rgb(106, 169, 245, 20%) | #6aa9f533 | |
rgb(106, 169, 245, 40%) | #6aa9f54C | |
rgb(106, 169, 245, 60%) | #6aa9f599 | |
rgb(106, 169, 245, 80%) | #6aa9f5CC | |
rgb(106, 169, 245, 100%) | #6aa9f5FF |
Saturated and desaturated colors of #6aa9f5
HSL Code | Preview |
---|---|
hsl(213, 10%, 69%) | |
hsl(213, 20%, 69%) | |
hsl(213, 40%, 69%) | |
hsl(213, 60%, 69%) | |
hsl(213, 80%, 69%) | |
hsl(213, 100%, 69%) |
#6aa9f5 Color Usage In CSS
body { color: #6aa9f5; } p { color: rgb(106, 169, 245); } header { border-bottom:1px solid #6aa9f5; }