#91c0fa Color
Color Codes | |
---|---|
Hex Code | #91c0fa |
RGB Code | rgb(145, 192, 250) |
HSL Code | hsl(213, 91%, 77%) |
#91c0fa Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(145, 192, 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(213, 91%, 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 #91c0fa
RGB Code | Hex Code | Preview |
---|---|---|
rgb(145, 192, 250, 10%) | #91c0fa1a | |
rgb(145, 192, 250, 20%) | #91c0fa33 | |
rgb(145, 192, 250, 40%) | #91c0fa4C | |
rgb(145, 192, 250, 60%) | #91c0fa99 | |
rgb(145, 192, 250, 80%) | #91c0faCC | |
rgb(145, 192, 250, 100%) | #91c0faFF |
Saturated and desaturated colors of #91c0fa
HSL Code | Preview |
---|---|
hsl(213, 10%, 77%) | |
hsl(213, 20%, 77%) | |
hsl(213, 40%, 77%) | |
hsl(213, 60%, 77%) | |
hsl(213, 80%, 77%) | |
hsl(213, 100%, 77%) |
#91c0fa Color Usage In CSS
body { color: #91c0fa; } p { color: rgb(145, 192, 250); } header { border-bottom:1px solid #91c0fa; }