#193a85 Color
Color Codes | |
---|---|
Hex Code | #193a85 |
RGB Code | rgb(25, 58, 133) |
HSL Code | hsl(222, 68%, 31%) |
#193a85 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(25, 58, 133); }
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(222, 68%, 31%); }
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 #193a85
RGB Code | Hex Code | Preview |
---|---|---|
rgb(25, 58, 133, 10%) | #193a851a | |
rgb(25, 58, 133, 20%) | #193a8533 | |
rgb(25, 58, 133, 40%) | #193a854C | |
rgb(25, 58, 133, 60%) | #193a8599 | |
rgb(25, 58, 133, 80%) | #193a85CC | |
rgb(25, 58, 133, 100%) | #193a85FF |
Saturated and desaturated colors of #193a85
HSL Code | Preview |
---|---|
hsl(222, 10%, 31%) | |
hsl(222, 20%, 31%) | |
hsl(222, 40%, 31%) | |
hsl(222, 60%, 31%) | |
hsl(222, 80%, 31%) | |
hsl(222, 100%, 31%) |
#193a85 Color Usage In CSS
body { color: #193a85; } p { color: rgb(25, 58, 133); } header { border-bottom:1px solid #193a85; }