#08319c Color
Color Codes | |
---|---|
Hex Code | #08319c |
RGB Code | rgb(08, 49, 156) |
HSL Code | hsl(223, 90%, 32%) |
#08319c Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(08, 49, 156); }
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(223, 90%, 32%); }
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 #08319c
RGB Code | Hex Code | Preview |
---|---|---|
rgb(08, 49, 156, 10%) | #08319c1a | |
rgb(08, 49, 156, 20%) | #08319c33 | |
rgb(08, 49, 156, 40%) | #08319c4C | |
rgb(08, 49, 156, 60%) | #08319c99 | |
rgb(08, 49, 156, 80%) | #08319cCC | |
rgb(08, 49, 156, 100%) | #08319cFF |
Saturated and desaturated colors of #08319c
HSL Code | Preview |
---|---|
hsl(223, 10%, 32%) | |
hsl(223, 20%, 32%) | |
hsl(223, 40%, 32%) | |
hsl(223, 60%, 32%) | |
hsl(223, 80%, 32%) | |
hsl(223, 100%, 32%) |
#08319c Color Usage In CSS
body { color: #08319c; } p { color: rgb(08, 49, 156); } header { border-bottom:1px solid #08319c; }