#174897 Color
Color Codes | |
---|---|
Hex Code | #174897 |
RGB Code | rgb(23, 72, 151) |
HSL Code | hsl(217, 74%, 34%) |
#174897 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(23, 72, 151); }
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(217, 74%, 34%); }
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 #174897
RGB Code | Hex Code | Preview |
---|---|---|
rgb(23, 72, 151, 10%) | #1748971a | |
rgb(23, 72, 151, 20%) | #17489733 | |
rgb(23, 72, 151, 40%) | #1748974C | |
rgb(23, 72, 151, 60%) | #17489799 | |
rgb(23, 72, 151, 80%) | #174897CC | |
rgb(23, 72, 151, 100%) | #174897FF |
Saturated and desaturated colors of #174897
HSL Code | Preview |
---|---|
hsl(217, 10%, 34%) | |
hsl(217, 20%, 34%) | |
hsl(217, 40%, 34%) | |
hsl(217, 60%, 34%) | |
hsl(217, 80%, 34%) | |
hsl(217, 100%, 34%) |
#174897 Color Usage In CSS
body { color: #174897; } p { color: rgb(23, 72, 151); } header { border-bottom:1px solid #174897; }