#113878 Color
Color Codes | |
---|---|
Hex Code | #113878 |
RGB Code | rgb(17, 56, 120) |
HSL Code | hsl(217, 75%, 27%) |
#113878 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(17, 56, 120); }
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, 75%, 27%); }
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 #113878
RGB Code | Hex Code | Preview |
---|---|---|
rgb(17, 56, 120, 10%) | #1138781a | |
rgb(17, 56, 120, 20%) | #11387833 | |
rgb(17, 56, 120, 40%) | #1138784C | |
rgb(17, 56, 120, 60%) | #11387899 | |
rgb(17, 56, 120, 80%) | #113878CC | |
rgb(17, 56, 120, 100%) | #113878FF |
Saturated and desaturated colors of #113878
HSL Code | Preview |
---|---|
hsl(217, 10%, 27%) | |
hsl(217, 20%, 27%) | |
hsl(217, 40%, 27%) | |
hsl(217, 60%, 27%) | |
hsl(217, 80%, 27%) | |
hsl(217, 100%, 27%) |
#113878 Color Usage In CSS
body { color: #113878; } p { color: rgb(17, 56, 120); } header { border-bottom:1px solid #113878; }