#6df1da Color
Color Codes | |
---|---|
Hex Code | #6df1da |
RGB Code | rgb(109, 241, 218) |
HSL Code | hsl(170, 83%, 69%) |
#6df1da Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(109, 241, 218); }
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(170, 83%, 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 #6df1da
RGB Code | Hex Code | Preview |
---|---|---|
rgb(109, 241, 218, 10%) | #6df1da1a | |
rgb(109, 241, 218, 20%) | #6df1da33 | |
rgb(109, 241, 218, 40%) | #6df1da4C | |
rgb(109, 241, 218, 60%) | #6df1da99 | |
rgb(109, 241, 218, 80%) | #6df1daCC | |
rgb(109, 241, 218, 100%) | #6df1daFF |
Saturated and desaturated colors of #6df1da
HSL Code | Preview |
---|---|
hsl(170, 10%, 69%) | |
hsl(170, 20%, 69%) | |
hsl(170, 40%, 69%) | |
hsl(170, 60%, 69%) | |
hsl(170, 80%, 69%) | |
hsl(170, 100%, 69%) |
#6df1da Color Usage In CSS
body { color: #6df1da; } p { color: rgb(109, 241, 218); } header { border-bottom:1px solid #6df1da; }