#99baf3 Color
Color Codes | |
---|---|
Hex Code | #99baf3 |
RGB Code | rgb(153, 186, 243) |
HSL Code | hsl(218, 79%, 78%) |
#99baf3 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(153, 186, 243); }
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(218, 79%, 78%); }
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 #99baf3
RGB Code | Hex Code | Preview |
---|---|---|
rgb(153, 186, 243, 10%) | #99baf31a | |
rgb(153, 186, 243, 20%) | #99baf333 | |
rgb(153, 186, 243, 40%) | #99baf34C | |
rgb(153, 186, 243, 60%) | #99baf399 | |
rgb(153, 186, 243, 80%) | #99baf3CC | |
rgb(153, 186, 243, 100%) | #99baf3FF |
Saturated and desaturated colors of #99baf3
HSL Code | Preview |
---|---|
hsl(218, 10%, 78%) | |
hsl(218, 20%, 78%) | |
hsl(218, 40%, 78%) | |
hsl(218, 60%, 78%) | |
hsl(218, 80%, 78%) | |
hsl(218, 100%, 78%) |
#99baf3 Color Usage In CSS
body { color: #99baf3; } p { color: rgb(153, 186, 243); } header { border-bottom:1px solid #99baf3; }