#43345f Color
Color Codes | |
---|---|
Hex Code | #43345f |
RGB Code | rgb(67, 52, 95) |
HSL Code | hsl(261, 29%, 29%) |
#43345f Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(67, 52, 95); }
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(261, 29%, 29%); }
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 #43345f
RGB Code | Hex Code | Preview |
---|---|---|
rgb(67, 52, 95, 10%) | #43345f1a | |
rgb(67, 52, 95, 20%) | #43345f33 | |
rgb(67, 52, 95, 40%) | #43345f4C | |
rgb(67, 52, 95, 60%) | #43345f99 | |
rgb(67, 52, 95, 80%) | #43345fCC | |
rgb(67, 52, 95, 100%) | #43345fFF |
Saturated and desaturated colors of #43345f
HSL Code | Preview |
---|---|
hsl(261, 10%, 29%) | |
hsl(261, 20%, 29%) | |
hsl(261, 40%, 29%) | |
hsl(261, 60%, 29%) | |
hsl(261, 80%, 29%) | |
hsl(261, 100%, 29%) |
#43345f Color Usage In CSS
body { color: #43345f; } p { color: rgb(67, 52, 95); } header { border-bottom:1px solid #43345f; }