#113031 Color
Color Codes | |
---|---|
Hex Code | #113031 |
RGB Code | rgb(17, 48, 49) |
HSL Code | hsl(182, 48%, 13%) |
#113031 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(17, 48, 49); }
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(182, 48%, 13%); }
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 #113031
RGB Code | Hex Code | Preview |
---|---|---|
rgb(17, 48, 49, 10%) | #1130311a | |
rgb(17, 48, 49, 20%) | #11303133 | |
rgb(17, 48, 49, 40%) | #1130314C | |
rgb(17, 48, 49, 60%) | #11303199 | |
rgb(17, 48, 49, 80%) | #113031CC | |
rgb(17, 48, 49, 100%) | #113031FF |
Saturated and desaturated colors of #113031
HSL Code | Preview |
---|---|
hsl(182, 10%, 13%) | |
hsl(182, 20%, 13%) | |
hsl(182, 40%, 13%) | |
hsl(182, 60%, 13%) | |
hsl(182, 80%, 13%) | |
hsl(182, 100%, 13%) |
#113031 Color Usage In CSS
body { color: #113031; } p { color: rgb(17, 48, 49); } header { border-bottom:1px solid #113031; }