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