#68c6ed Color
Color Codes | |
---|---|
Hex Code | #68c6ed |
RGB Code | rgb(104, 198, 237) |
HSL Code | hsl(198, 79%, 67%) |
#68c6ed Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(104, 198, 237); }
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(198, 79%, 67%); }
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 #68c6ed
RGB Code | Hex Code | Preview |
---|---|---|
rgb(104, 198, 237, 10%) | #68c6ed1a | |
rgb(104, 198, 237, 20%) | #68c6ed33 | |
rgb(104, 198, 237, 40%) | #68c6ed4C | |
rgb(104, 198, 237, 60%) | #68c6ed99 | |
rgb(104, 198, 237, 80%) | #68c6edCC | |
rgb(104, 198, 237, 100%) | #68c6edFF |
Saturated and desaturated colors of #68c6ed
HSL Code | Preview |
---|---|
hsl(198, 10%, 67%) | |
hsl(198, 20%, 67%) | |
hsl(198, 40%, 67%) | |
hsl(198, 60%, 67%) | |
hsl(198, 80%, 67%) | |
hsl(198, 100%, 67%) |
#68c6ed Color Usage In CSS
body { color: #68c6ed; } p { color: rgb(104, 198, 237); } header { border-bottom:1px solid #68c6ed; }