#07043d Color
Color Codes | |
---|---|
Hex Code | #07043d |
RGB Code | rgb(07, 04, 61) |
HSL Code | hsl(243, 88%, 13%) |
#07043d Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(07, 04, 61); }
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(243, 88%, 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 #07043d
RGB Code | Hex Code | Preview |
---|---|---|
rgb(07, 04, 61, 10%) | #07043d1a | |
rgb(07, 04, 61, 20%) | #07043d33 | |
rgb(07, 04, 61, 40%) | #07043d4C | |
rgb(07, 04, 61, 60%) | #07043d99 | |
rgb(07, 04, 61, 80%) | #07043dCC | |
rgb(07, 04, 61, 100%) | #07043dFF |
Saturated and desaturated colors of #07043d
HSL Code | Preview |
---|---|
hsl(243, 10%, 13%) | |
hsl(243, 20%, 13%) | |
hsl(243, 40%, 13%) | |
hsl(243, 60%, 13%) | |
hsl(243, 80%, 13%) | |
hsl(243, 100%, 13%) |
#07043d Color Usage In CSS
body { color: #07043d; } p { color: rgb(07, 04, 61); } header { border-bottom:1px solid #07043d; }