#043488 Color
Color Codes | |
---|---|
Hex Code | #043488 |
RGB Code | rgb(04, 52, 136) |
HSL Code | hsl(218, 94%, 27%) |
#043488 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(04, 52, 136); }
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(218, 94%, 27%); }
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 #043488
RGB Code | Hex Code | Preview |
---|---|---|
rgb(04, 52, 136, 10%) | #0434881a | |
rgb(04, 52, 136, 20%) | #04348833 | |
rgb(04, 52, 136, 40%) | #0434884C | |
rgb(04, 52, 136, 60%) | #04348899 | |
rgb(04, 52, 136, 80%) | #043488CC | |
rgb(04, 52, 136, 100%) | #043488FF |
Saturated and desaturated colors of #043488
HSL Code | Preview |
---|---|
hsl(218, 10%, 27%) | |
hsl(218, 20%, 27%) | |
hsl(218, 40%, 27%) | |
hsl(218, 60%, 27%) | |
hsl(218, 80%, 27%) | |
hsl(218, 100%, 27%) |
#043488 Color Usage In CSS
body { color: #043488; } p { color: rgb(04, 52, 136); } header { border-bottom:1px solid #043488; }