#6cddfd Color
Color Codes | |
---|---|
Hex Code | #6cddfd |
RGB Code | rgb(108, 221, 253) |
HSL Code | hsl(193, 97%, 71%) |
#6cddfd Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(108, 221, 253); }
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(193, 97%, 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 #6cddfd
RGB Code | Hex Code | Preview |
---|---|---|
rgb(108, 221, 253, 10%) | #6cddfd1a | |
rgb(108, 221, 253, 20%) | #6cddfd33 | |
rgb(108, 221, 253, 40%) | #6cddfd4C | |
rgb(108, 221, 253, 60%) | #6cddfd99 | |
rgb(108, 221, 253, 80%) | #6cddfdCC | |
rgb(108, 221, 253, 100%) | #6cddfdFF |
Saturated and desaturated colors of #6cddfd
HSL Code | Preview |
---|---|
hsl(193, 10%, 71%) | |
hsl(193, 20%, 71%) | |
hsl(193, 40%, 71%) | |
hsl(193, 60%, 71%) | |
hsl(193, 80%, 71%) | |
hsl(193, 100%, 71%) |
#6cddfd Color Usage In CSS
body { color: #6cddfd; } p { color: rgb(108, 221, 253); } header { border-bottom:1px solid #6cddfd; }