#14033f Color
Color Codes | |
---|---|
Hex Code | #14033f |
RGB Code | rgb(20, 03, 63) |
HSL Code | hsl(257, 91%, 13%) |
#14033f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(20, 03, 63); }
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(257, 91%, 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 #14033f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(20, 03, 63, 10%) | #14033f1a | |
rgb(20, 03, 63, 20%) | #14033f33 | |
rgb(20, 03, 63, 40%) | #14033f4C | |
rgb(20, 03, 63, 60%) | #14033f99 | |
rgb(20, 03, 63, 80%) | #14033fCC | |
rgb(20, 03, 63, 100%) | #14033fFF |
Saturated and desaturated colors of #14033f
HSL Code | Preview |
---|---|
hsl(257, 10%, 13%) | |
hsl(257, 20%, 13%) | |
hsl(257, 40%, 13%) | |
hsl(257, 60%, 13%) | |
hsl(257, 80%, 13%) | |
hsl(257, 100%, 13%) |
#14033f Color Usage In CSS
body { color: #14033f; } p { color: rgb(20, 03, 63); } header { border-bottom:1px solid #14033f; }