#61056b Color
Color Codes | |
---|---|
Hex Code | #61056b |
RGB Code | rgb(97, 05, 107) |
HSL Code | hsl(294, 91%, 22%) |
#61056b Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(97, 05, 107); }
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(294, 91%, 22%); }
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 #61056b
RGB Code | Hex Code | Preview |
---|---|---|
rgb(97, 05, 107, 10%) | #61056b1a | |
rgb(97, 05, 107, 20%) | #61056b33 | |
rgb(97, 05, 107, 40%) | #61056b4C | |
rgb(97, 05, 107, 60%) | #61056b99 | |
rgb(97, 05, 107, 80%) | #61056bCC | |
rgb(97, 05, 107, 100%) | #61056bFF |
Saturated and desaturated colors of #61056b
HSL Code | Preview |
---|---|
hsl(294, 10%, 22%) | |
hsl(294, 20%, 22%) | |
hsl(294, 40%, 22%) | |
hsl(294, 60%, 22%) | |
hsl(294, 80%, 22%) | |
hsl(294, 100%, 22%) |
#61056b Color Usage In CSS
body { color: #61056b; } p { color: rgb(97, 05, 107); } header { border-bottom:1px solid #61056b; }