#6df4ba Color
Color Codes | |
---|---|
Hex Code | #6df4ba |
RGB Code | rgb(109, 244, 186) |
HSL Code | hsl(154, 86%, 69%) |
#6df4ba Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(109, 244, 186); }
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(154, 86%, 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 #6df4ba
RGB Code | Hex Code | Preview |
---|---|---|
rgb(109, 244, 186, 10%) | #6df4ba1a | |
rgb(109, 244, 186, 20%) | #6df4ba33 | |
rgb(109, 244, 186, 40%) | #6df4ba4C | |
rgb(109, 244, 186, 60%) | #6df4ba99 | |
rgb(109, 244, 186, 80%) | #6df4baCC | |
rgb(109, 244, 186, 100%) | #6df4baFF |
Saturated and desaturated colors of #6df4ba
HSL Code | Preview |
---|---|
hsl(154, 10%, 69%) | |
hsl(154, 20%, 69%) | |
hsl(154, 40%, 69%) | |
hsl(154, 60%, 69%) | |
hsl(154, 80%, 69%) | |
hsl(154, 100%, 69%) |
#6df4ba Color Usage In CSS
body { color: #6df4ba; } p { color: rgb(109, 244, 186); } header { border-bottom:1px solid #6df4ba; }