Random Color Generator

#a0538d Color

Color Codes
Hex Code #a0538d
RGB Code rgb(160, 83, 141)
HSL Code hsl(315, 32%, 48%)

#a0538d Color Syntax

rgb()

 rgb(Red, Green, Blue);
 rgba(Red, Green, Blue, Alpha);

 main {
    background-color: rgb(160, 83, 141);
   }

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(315, 32%, 48%);
  }

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 #a0538d

RGB Code Hex Code Preview
rgb(160, 83, 141, 10%) #a0538d1a  
rgb(160, 83, 141, 20%) #a0538d33  
rgb(160, 83, 141, 40%) #a0538d4C  
rgb(160, 83, 141, 60%) #a0538d99  
rgb(160, 83, 141, 80%) #a0538dCC  
rgb(160, 83, 141, 100%) #a0538dFF  

Saturated and desaturated colors of #a0538d

HSL Code Preview
hsl(315, 10%, 48%)  
hsl(315, 20%, 48%)  
hsl(315, 40%, 48%)  
hsl(315, 60%, 48%)  
hsl(315, 80%, 48%)  
hsl(315, 100%, 48%)  

#a0538d Color Usage In CSS

 body {
    color: #a0538d;
    }
 p {
    color: rgb(160, 83, 141);
    }
 header {
    border-bottom:1px solid #a0538d;
    }
Recent Random Colors