#1664bc Color
Color Codes | |
---|---|
Hex Code | #1664bc |
RGB Code | rgb(22, 100, 188) |
HSL Code | hsl(212, 79%, 41%) |
#1664bc Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(22, 100, 188); }
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(212, 79%, 41%); }
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 #1664bc
RGB Code | Hex Code | Preview |
---|---|---|
rgb(22, 100, 188, 10%) | #1664bc1a | |
rgb(22, 100, 188, 20%) | #1664bc33 | |
rgb(22, 100, 188, 40%) | #1664bc4C | |
rgb(22, 100, 188, 60%) | #1664bc99 | |
rgb(22, 100, 188, 80%) | #1664bcCC | |
rgb(22, 100, 188, 100%) | #1664bcFF |
Saturated and desaturated colors of #1664bc
HSL Code | Preview |
---|---|
hsl(212, 10%, 41%) | |
hsl(212, 20%, 41%) | |
hsl(212, 40%, 41%) | |
hsl(212, 60%, 41%) | |
hsl(212, 80%, 41%) | |
hsl(212, 100%, 41%) |
#1664bc Color Usage In CSS
body { color: #1664bc; } p { color: rgb(22, 100, 188); } header { border-bottom:1px solid #1664bc; }