#8bdfff Color
Color Codes | |
---|---|
Hex Code | #8bdfff |
RGB Code | rgb(139, 223, 255) |
HSL Code | hsl(197, 100%, 77%) |
#8bdfff Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(139, 223, 255); }
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(197, 100%, 77%); }
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 #8bdfff
RGB Code | Hex Code | Preview |
---|---|---|
rgb(139, 223, 255, 10%) | #8bdfff1a | |
rgb(139, 223, 255, 20%) | #8bdfff33 | |
rgb(139, 223, 255, 40%) | #8bdfff4C | |
rgb(139, 223, 255, 60%) | #8bdfff99 | |
rgb(139, 223, 255, 80%) | #8bdfffCC | |
rgb(139, 223, 255, 100%) | #8bdfffFF |
Saturated and desaturated colors of #8bdfff
HSL Code | Preview |
---|---|
hsl(197, 10%, 77%) | |
hsl(197, 20%, 77%) | |
hsl(197, 40%, 77%) | |
hsl(197, 60%, 77%) | |
hsl(197, 80%, 77%) | |
hsl(197, 100%, 77%) |
#8bdfff Color Usage In CSS
body { color: #8bdfff; } p { color: rgb(139, 223, 255); } header { border-bottom:1px solid #8bdfff; }