#610681 Color
Color Codes | |
---|---|
Hex Code | #610681 |
RGB Code | rgb(97, 06, 129) |
HSL Code | hsl(284, 91%, 26%) |
#610681 Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(97, 06, 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(284, 91%, 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 #610681
RGB Code | Hex Code | Preview |
---|---|---|
rgb(97, 06, 129, 10%) | #6106811a | |
rgb(97, 06, 129, 20%) | #61068133 | |
rgb(97, 06, 129, 40%) | #6106814C | |
rgb(97, 06, 129, 60%) | #61068199 | |
rgb(97, 06, 129, 80%) | #610681CC | |
rgb(97, 06, 129, 100%) | #610681FF |
Saturated and desaturated colors of #610681
HSL Code | Preview |
---|---|
hsl(284, 10%, 26%) | |
hsl(284, 20%, 26%) | |
hsl(284, 40%, 26%) | |
hsl(284, 60%, 26%) | |
hsl(284, 80%, 26%) | |
hsl(284, 100%, 26%) |
#610681 Color Usage In CSS
body { color: #610681; } p { color: rgb(97, 06, 129); } header { border-bottom:1px solid #610681; }