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