#352b43 Color
Color Codes | |
---|---|
Hex Code | #352b43 |
RGB Code | rgb(53, 43, 67) |
HSL Code | hsl(265, 22%, 22%) |
#352b43 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(53, 43, 67); }
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(265, 22%, 22%); }
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 #352b43
RGB Code | Hex Code | Preview |
---|---|---|
rgb(53, 43, 67, 10%) | #352b431a | |
rgb(53, 43, 67, 20%) | #352b4333 | |
rgb(53, 43, 67, 40%) | #352b434C | |
rgb(53, 43, 67, 60%) | #352b4399 | |
rgb(53, 43, 67, 80%) | #352b43CC | |
rgb(53, 43, 67, 100%) | #352b43FF |
Saturated and desaturated colors of #352b43
HSL Code | Preview |
---|---|
hsl(265, 10%, 22%) | |
hsl(265, 20%, 22%) | |
hsl(265, 40%, 22%) | |
hsl(265, 60%, 22%) | |
hsl(265, 80%, 22%) | |
hsl(265, 100%, 22%) |
#352b43 Color Usage In CSS
body { color: #352b43; } p { color: rgb(53, 43, 67); } header { border-bottom:1px solid #352b43; }