#9bb4e2 Color
Color Codes | |
---|---|
Hex Code | #9bb4e2 |
RGB Code | rgb(155, 180, 226) |
HSL Code | hsl(219, 55%, 75%) |
#9bb4e2 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(155, 180, 226); }
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(219, 55%, 75%); }
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 #9bb4e2
RGB Code | Hex Code | Preview |
---|---|---|
rgb(155, 180, 226, 10%) | #9bb4e21a | |
rgb(155, 180, 226, 20%) | #9bb4e233 | |
rgb(155, 180, 226, 40%) | #9bb4e24C | |
rgb(155, 180, 226, 60%) | #9bb4e299 | |
rgb(155, 180, 226, 80%) | #9bb4e2CC | |
rgb(155, 180, 226, 100%) | #9bb4e2FF |
Saturated and desaturated colors of #9bb4e2
HSL Code | Preview |
---|---|
hsl(219, 10%, 75%) | |
hsl(219, 20%, 75%) | |
hsl(219, 40%, 75%) | |
hsl(219, 60%, 75%) | |
hsl(219, 80%, 75%) | |
hsl(219, 100%, 75%) |
#9bb4e2 Color Usage In CSS
body { color: #9bb4e2; } p { color: rgb(155, 180, 226); } header { border-bottom:1px solid #9bb4e2; }