#6dc1bc Color
Color Codes | |
---|---|
Hex Code | #6dc1bc |
RGB Code | rgb(109, 193, 188) |
HSL Code | hsl(176, 40%, 59%) |
#6dc1bc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(109, 193, 188); }
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(176, 40%, 59%); }
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 #6dc1bc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(109, 193, 188, 10%) | #6dc1bc1a | |
rgb(109, 193, 188, 20%) | #6dc1bc33 | |
rgb(109, 193, 188, 40%) | #6dc1bc4C | |
rgb(109, 193, 188, 60%) | #6dc1bc99 | |
rgb(109, 193, 188, 80%) | #6dc1bcCC | |
rgb(109, 193, 188, 100%) | #6dc1bcFF |
Saturated and desaturated colors of #6dc1bc
HSL Code | Preview |
---|---|
hsl(176, 10%, 59%) | |
hsl(176, 20%, 59%) | |
hsl(176, 40%, 59%) | |
hsl(176, 60%, 59%) | |
hsl(176, 80%, 59%) | |
hsl(176, 100%, 59%) |
#6dc1bc Color Usage In CSS
body { color: #6dc1bc; } p { color: rgb(109, 193, 188); } header { border-bottom:1px solid #6dc1bc; }