#073bbe Color
Color Codes | |
---|---|
Hex Code | #073bbe |
RGB Code | rgb(07, 59, 190) |
HSL Code | hsl(223, 93%, 39%) |
#073bbe Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(07, 59, 190); }
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, 93%, 39%); }
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 #073bbe
RGB Code | Hex Code | Preview |
---|---|---|
rgb(07, 59, 190, 10%) | #073bbe1a | |
rgb(07, 59, 190, 20%) | #073bbe33 | |
rgb(07, 59, 190, 40%) | #073bbe4C | |
rgb(07, 59, 190, 60%) | #073bbe99 | |
rgb(07, 59, 190, 80%) | #073bbeCC | |
rgb(07, 59, 190, 100%) | #073bbeFF |
Saturated and desaturated colors of #073bbe
HSL Code | Preview |
---|---|
hsl(223, 10%, 39%) | |
hsl(223, 20%, 39%) | |
hsl(223, 40%, 39%) | |
hsl(223, 60%, 39%) | |
hsl(223, 80%, 39%) | |
hsl(223, 100%, 39%) |
#073bbe Color Usage In CSS
body { color: #073bbe; } p { color: rgb(07, 59, 190); } header { border-bottom:1px solid #073bbe; }