#113056 Color
Color Codes | |
---|---|
Hex Code | #113056 |
RGB Code | rgb(17, 48, 86) |
HSL Code | hsl(213, 67%, 20%) |
#113056 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(17, 48, 86); }
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(213, 67%, 20%); }
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 #113056
RGB Code | Hex Code | Preview |
---|---|---|
rgb(17, 48, 86, 10%) | #1130561a | |
rgb(17, 48, 86, 20%) | #11305633 | |
rgb(17, 48, 86, 40%) | #1130564C | |
rgb(17, 48, 86, 60%) | #11305699 | |
rgb(17, 48, 86, 80%) | #113056CC | |
rgb(17, 48, 86, 100%) | #113056FF |
Saturated and desaturated colors of #113056
HSL Code | Preview |
---|---|
hsl(213, 10%, 20%) | |
hsl(213, 20%, 20%) | |
hsl(213, 40%, 20%) | |
hsl(213, 60%, 20%) | |
hsl(213, 80%, 20%) | |
hsl(213, 100%, 20%) |
#113056 Color Usage In CSS
body { color: #113056; } p { color: rgb(17, 48, 86); } header { border-bottom:1px solid #113056; }