#130017 Color
Color Codes | |
---|---|
Hex Code | #130017 |
RGB Code | rgb(19, 00, 23) |
HSL Code | hsl(290, 100%, 5%) |
#130017 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(19, 00, 23); }
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(290, 100%, 5%); }
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 #130017
RGB Code | Hex Code | Preview |
---|---|---|
rgb(19, 00, 23, 10%) | #1300171a | |
rgb(19, 00, 23, 20%) | #13001733 | |
rgb(19, 00, 23, 40%) | #1300174C | |
rgb(19, 00, 23, 60%) | #13001799 | |
rgb(19, 00, 23, 80%) | #130017CC | |
rgb(19, 00, 23, 100%) | #130017FF |
Saturated and desaturated colors of #130017
HSL Code | Preview |
---|---|
hsl(290, 10%, 5%) | |
hsl(290, 20%, 5%) | |
hsl(290, 40%, 5%) | |
hsl(290, 60%, 5%) | |
hsl(290, 80%, 5%) | |
hsl(290, 100%, 5%) |
#130017 Color Usage In CSS
body { color: #130017; } p { color: rgb(19, 00, 23); } header { border-bottom:1px solid #130017; }