#66e0f7 Color
Color Codes | |
---|---|
Hex Code | #66e0f7 |
RGB Code | rgb(102, 224, 247) |
HSL Code | hsl(190, 90%, 68%) |
#66e0f7 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(102, 224, 247); }
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(190, 90%, 68%); }
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 #66e0f7
RGB Code | Hex Code | Preview |
---|---|---|
rgb(102, 224, 247, 10%) | #66e0f71a | |
rgb(102, 224, 247, 20%) | #66e0f733 | |
rgb(102, 224, 247, 40%) | #66e0f74C | |
rgb(102, 224, 247, 60%) | #66e0f799 | |
rgb(102, 224, 247, 80%) | #66e0f7CC | |
rgb(102, 224, 247, 100%) | #66e0f7FF |
Saturated and desaturated colors of #66e0f7
HSL Code | Preview |
---|---|
hsl(190, 10%, 68%) | |
hsl(190, 20%, 68%) | |
hsl(190, 40%, 68%) | |
hsl(190, 60%, 68%) | |
hsl(190, 80%, 68%) | |
hsl(190, 100%, 68%) |
#66e0f7 Color Usage In CSS
body { color: #66e0f7; } p { color: rgb(102, 224, 247); } header { border-bottom:1px solid #66e0f7; }