#564481 Color
Color Codes | |
---|---|
Hex Code | #564481 |
RGB Code | rgb(86, 68, 129) |
HSL Code | hsl(258, 31%, 39%) |
#564481 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(86, 68, 129); }
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(258, 31%, 39%); }
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 #564481
RGB Code | Hex Code | Preview |
---|---|---|
rgb(86, 68, 129, 10%) | #5644811a | |
rgb(86, 68, 129, 20%) | #56448133 | |
rgb(86, 68, 129, 40%) | #5644814C | |
rgb(86, 68, 129, 60%) | #56448199 | |
rgb(86, 68, 129, 80%) | #564481CC | |
rgb(86, 68, 129, 100%) | #564481FF |
Saturated and desaturated colors of #564481
HSL Code | Preview |
---|---|
hsl(258, 10%, 39%) | |
hsl(258, 20%, 39%) | |
hsl(258, 40%, 39%) | |
hsl(258, 60%, 39%) | |
hsl(258, 80%, 39%) | |
hsl(258, 100%, 39%) |
#564481 Color Usage In CSS
body { color: #564481; } p { color: rgb(86, 68, 129); } header { border-bottom:1px solid #564481; }