#845569 Color
Color Codes | |
---|---|
Hex Code | #845569 |
RGB Code | rgb(132, 85, 105) |
HSL Code | hsl(334, 22%, 43%) |
#845569 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(132, 85, 105); }
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(334, 22%, 43%); }
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 #845569
RGB Code | Hex Code | Preview |
---|---|---|
rgb(132, 85, 105, 10%) | #8455691a | |
rgb(132, 85, 105, 20%) | #84556933 | |
rgb(132, 85, 105, 40%) | #8455694C | |
rgb(132, 85, 105, 60%) | #84556999 | |
rgb(132, 85, 105, 80%) | #845569CC | |
rgb(132, 85, 105, 100%) | #845569FF |
Saturated and desaturated colors of #845569
HSL Code | Preview |
---|---|
hsl(334, 10%, 43%) | |
hsl(334, 20%, 43%) | |
hsl(334, 40%, 43%) | |
hsl(334, 60%, 43%) | |
hsl(334, 80%, 43%) | |
hsl(334, 100%, 43%) |
#845569 Color Usage In CSS
body { color: #845569; } p { color: rgb(132, 85, 105); } header { border-bottom:1px solid #845569; }