#6cfbfe Color
Color Codes | |
---|---|
Hex Code | #6cfbfe |
RGB Code | rgb(108, 251, 254) |
HSL Code | hsl(181, 99%, 71%) |
#6cfbfe Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(108, 251, 254); }
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(181, 99%, 71%); }
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 #6cfbfe
RGB Code | Hex Code | Preview |
---|---|---|
rgb(108, 251, 254, 10%) | #6cfbfe1a | |
rgb(108, 251, 254, 20%) | #6cfbfe33 | |
rgb(108, 251, 254, 40%) | #6cfbfe4C | |
rgb(108, 251, 254, 60%) | #6cfbfe99 | |
rgb(108, 251, 254, 80%) | #6cfbfeCC | |
rgb(108, 251, 254, 100%) | #6cfbfeFF |
Saturated and desaturated colors of #6cfbfe
HSL Code | Preview |
---|---|
hsl(181, 10%, 71%) | |
hsl(181, 20%, 71%) | |
hsl(181, 40%, 71%) | |
hsl(181, 60%, 71%) | |
hsl(181, 80%, 71%) | |
hsl(181, 100%, 71%) |
#6cfbfe Color Usage In CSS
body { color: #6cfbfe; } p { color: rgb(108, 251, 254); } header { border-bottom:1px solid #6cfbfe; }