#40435a Color
Color Codes | |
---|---|
Hex Code | #40435a |
RGB Code | rgb(64, 67, 90) |
HSL Code | hsl(233, 17%, 30%) |
#40435a Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(64, 67, 90); }
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(233, 17%, 30%); }
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 #40435a
RGB Code | Hex Code | Preview |
---|---|---|
rgb(64, 67, 90, 10%) | #40435a1a | |
rgb(64, 67, 90, 20%) | #40435a33 | |
rgb(64, 67, 90, 40%) | #40435a4C | |
rgb(64, 67, 90, 60%) | #40435a99 | |
rgb(64, 67, 90, 80%) | #40435aCC | |
rgb(64, 67, 90, 100%) | #40435aFF |
Saturated and desaturated colors of #40435a
HSL Code | Preview |
---|---|
hsl(233, 10%, 30%) | |
hsl(233, 20%, 30%) | |
hsl(233, 40%, 30%) | |
hsl(233, 60%, 30%) | |
hsl(233, 80%, 30%) | |
hsl(233, 100%, 30%) |
#40435a Color Usage In CSS
body { color: #40435a; } p { color: rgb(64, 67, 90); } header { border-bottom:1px solid #40435a; }