#072ccb Color
Color Codes | |
---|---|
Hex Code | #072ccb |
RGB Code | rgb(07, 44, 203) |
HSL Code | hsl(229, 93%, 41%) |
#072ccb Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(07, 44, 203); }
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(229, 93%, 41%); }
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 #072ccb
RGB Code | Hex Code | Preview |
---|---|---|
rgb(07, 44, 203, 10%) | #072ccb1a | |
rgb(07, 44, 203, 20%) | #072ccb33 | |
rgb(07, 44, 203, 40%) | #072ccb4C | |
rgb(07, 44, 203, 60%) | #072ccb99 | |
rgb(07, 44, 203, 80%) | #072ccbCC | |
rgb(07, 44, 203, 100%) | #072ccbFF |
Saturated and desaturated colors of #072ccb
HSL Code | Preview |
---|---|
hsl(229, 10%, 41%) | |
hsl(229, 20%, 41%) | |
hsl(229, 40%, 41%) | |
hsl(229, 60%, 41%) | |
hsl(229, 80%, 41%) | |
hsl(229, 100%, 41%) |
#072ccb Color Usage In CSS
body { color: #072ccb; } p { color: rgb(07, 44, 203); } header { border-bottom:1px solid #072ccb; }