#354dbf Color
Color Codes | |
---|---|
Hex Code | #354dbf |
RGB Code | rgb(53, 77, 191) |
HSL Code | hsl(230, 57%, 48%) |
#354dbf Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(53, 77, 191); }
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(230, 57%, 48%); }
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 #354dbf
RGB Code | Hex Code | Preview |
---|---|---|
rgb(53, 77, 191, 10%) | #354dbf1a | |
rgb(53, 77, 191, 20%) | #354dbf33 | |
rgb(53, 77, 191, 40%) | #354dbf4C | |
rgb(53, 77, 191, 60%) | #354dbf99 | |
rgb(53, 77, 191, 80%) | #354dbfCC | |
rgb(53, 77, 191, 100%) | #354dbfFF |
Saturated and desaturated colors of #354dbf
HSL Code | Preview |
---|---|
hsl(230, 10%, 48%) | |
hsl(230, 20%, 48%) | |
hsl(230, 40%, 48%) | |
hsl(230, 60%, 48%) | |
hsl(230, 80%, 48%) | |
hsl(230, 100%, 48%) |
#354dbf Color Usage In CSS
body { color: #354dbf; } p { color: rgb(53, 77, 191); } header { border-bottom:1px solid #354dbf; }