#6fb6df Color
Color Codes | |
---|---|
Hex Code | #6fb6df |
RGB Code | rgb(111, 182, 223) |
HSL Code | hsl(202, 64%, 65%) |
#6fb6df Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(111, 182, 223); }
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(202, 64%, 65%); }
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 #6fb6df
RGB Code | Hex Code | Preview |
---|---|---|
rgb(111, 182, 223, 10%) | #6fb6df1a | |
rgb(111, 182, 223, 20%) | #6fb6df33 | |
rgb(111, 182, 223, 40%) | #6fb6df4C | |
rgb(111, 182, 223, 60%) | #6fb6df99 | |
rgb(111, 182, 223, 80%) | #6fb6dfCC | |
rgb(111, 182, 223, 100%) | #6fb6dfFF |
Saturated and desaturated colors of #6fb6df
HSL Code | Preview |
---|---|
hsl(202, 10%, 65%) | |
hsl(202, 20%, 65%) | |
hsl(202, 40%, 65%) | |
hsl(202, 60%, 65%) | |
hsl(202, 80%, 65%) | |
hsl(202, 100%, 65%) |
#6fb6df Color Usage In CSS
body { color: #6fb6df; } p { color: rgb(111, 182, 223); } header { border-bottom:1px solid #6fb6df; }