#6d34ad Color
Color Codes | |
---|---|
Hex Code | #6d34ad |
RGB Code | rgb(109, 52, 173) |
HSL Code | hsl(268, 54%, 44%) |
#6d34ad Color Syntax
rgb()
rgb(Red, Green, Blue); rgba(Red, Green, Blue, Alpha); main { background-color: rgb(109, 52, 173); }
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(268, 54%, 44%); }
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 #6d34ad
RGB Code | Hex Code | Preview |
---|---|---|
rgb(109, 52, 173, 10%) | #6d34ad1a | |
rgb(109, 52, 173, 20%) | #6d34ad33 | |
rgb(109, 52, 173, 40%) | #6d34ad4C | |
rgb(109, 52, 173, 60%) | #6d34ad99 | |
rgb(109, 52, 173, 80%) | #6d34adCC | |
rgb(109, 52, 173, 100%) | #6d34adFF |
Saturated and desaturated colors of #6d34ad
HSL Code | Preview |
---|---|
hsl(268, 10%, 44%) | |
hsl(268, 20%, 44%) | |
hsl(268, 40%, 44%) | |
hsl(268, 60%, 44%) | |
hsl(268, 80%, 44%) | |
hsl(268, 100%, 44%) |
#6d34ad Color Usage In CSS
body { color: #6d34ad; } p { color: rgb(109, 52, 173); } header { border-bottom:1px solid #6d34ad; }