#8dc2f9 Color
Color Codes | |
---|---|
Hex Code | #8dc2f9 |
RGB Code | rgb(141, 194, 249) |
HSL Code | hsl(211, 90%, 76%) |
#8dc2f9 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(141, 194, 249); }
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(211, 90%, 76%); }
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 #8dc2f9
RGB Code | Hex Code | Preview |
---|---|---|
rgb(141, 194, 249, 10%) | #8dc2f91a | |
rgb(141, 194, 249, 20%) | #8dc2f933 | |
rgb(141, 194, 249, 40%) | #8dc2f94C | |
rgb(141, 194, 249, 60%) | #8dc2f999 | |
rgb(141, 194, 249, 80%) | #8dc2f9CC | |
rgb(141, 194, 249, 100%) | #8dc2f9FF |
Saturated and desaturated colors of #8dc2f9
HSL Code | Preview |
---|---|
hsl(211, 10%, 76%) | |
hsl(211, 20%, 76%) | |
hsl(211, 40%, 76%) | |
hsl(211, 60%, 76%) | |
hsl(211, 80%, 76%) | |
hsl(211, 100%, 76%) |
#8dc2f9 Color Usage In CSS
body { color: #8dc2f9; } p { color: rgb(141, 194, 249); } header { border-bottom:1px solid #8dc2f9; }