#671c47 Color
Color Codes | |
---|---|
Hex Code | #671c47 |
RGB Code | rgb(103, 28, 71) |
HSL Code | hsl(326, 57%, 26%) |
#671c47 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(103, 28, 71); }
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(326, 57%, 26%); }
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 #671c47
RGB Code | Hex Code | Preview |
---|---|---|
rgb(103, 28, 71, 10%) | #671c471a | |
rgb(103, 28, 71, 20%) | #671c4733 | |
rgb(103, 28, 71, 40%) | #671c474C | |
rgb(103, 28, 71, 60%) | #671c4799 | |
rgb(103, 28, 71, 80%) | #671c47CC | |
rgb(103, 28, 71, 100%) | #671c47FF |
Saturated and desaturated colors of #671c47
HSL Code | Preview |
---|---|
hsl(326, 10%, 26%) | |
hsl(326, 20%, 26%) | |
hsl(326, 40%, 26%) | |
hsl(326, 60%, 26%) | |
hsl(326, 80%, 26%) | |
hsl(326, 100%, 26%) |
#671c47 Color Usage In CSS
body { color: #671c47; } p { color: rgb(103, 28, 71); } header { border-bottom:1px solid #671c47; }