#11bafa Color
Color Codes | |
---|---|
Hex Code | #11bafa |
RGB Code | rgb(17, 186, 250) |
HSL Code | hsl(196, 96%, 52%) |
#11bafa Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(17, 186, 250); }
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(196, 96%, 52%); }
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 #11bafa
RGB Code | Hex Code | Preview |
---|---|---|
rgb(17, 186, 250, 10%) | #11bafa1a | |
rgb(17, 186, 250, 20%) | #11bafa33 | |
rgb(17, 186, 250, 40%) | #11bafa4C | |
rgb(17, 186, 250, 60%) | #11bafa99 | |
rgb(17, 186, 250, 80%) | #11bafaCC | |
rgb(17, 186, 250, 100%) | #11bafaFF |
Saturated and desaturated colors of #11bafa
HSL Code | Preview |
---|---|
hsl(196, 10%, 52%) | |
hsl(196, 20%, 52%) | |
hsl(196, 40%, 52%) | |
hsl(196, 60%, 52%) | |
hsl(196, 80%, 52%) | |
hsl(196, 100%, 52%) |
#11bafa Color Usage In CSS
body { color: #11bafa; } p { color: rgb(17, 186, 250); } header { border-bottom:1px solid #11bafa; }