#2158a9 Color
Color Codes | |
---|---|
Hex Code | #2158a9 |
RGB Code | rgb(33, 88, 169) |
HSL Code | hsl(216, 67%, 40%) |
#2158a9 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(33, 88, 169); }
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(216, 67%, 40%); }
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 #2158a9
RGB Code | Hex Code | Preview |
---|---|---|
rgb(33, 88, 169, 10%) | #2158a91a | |
rgb(33, 88, 169, 20%) | #2158a933 | |
rgb(33, 88, 169, 40%) | #2158a94C | |
rgb(33, 88, 169, 60%) | #2158a999 | |
rgb(33, 88, 169, 80%) | #2158a9CC | |
rgb(33, 88, 169, 100%) | #2158a9FF |
Saturated and desaturated colors of #2158a9
HSL Code | Preview |
---|---|
hsl(216, 10%, 40%) | |
hsl(216, 20%, 40%) | |
hsl(216, 40%, 40%) | |
hsl(216, 60%, 40%) | |
hsl(216, 80%, 40%) | |
hsl(216, 100%, 40%) |
#2158a9 Color Usage In CSS
body { color: #2158a9; } p { color: rgb(33, 88, 169); } header { border-bottom:1px solid #2158a9; }