Random Color Generator

#a07dc1 Color

Color Codes
Hex Code #a07dc1
RGB Code rgb(160, 125, 193)
HSL Code hsl(271, 35%, 62%)

#a07dc1 Color Syntax

rgb()

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

 main {
    background-color: rgb(160, 125, 193);
   }

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(271, 35%, 62%);
  }

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

RGB Code Hex Code Preview
rgb(160, 125, 193, 10%) #a07dc11a  
rgb(160, 125, 193, 20%) #a07dc133  
rgb(160, 125, 193, 40%) #a07dc14C  
rgb(160, 125, 193, 60%) #a07dc199  
rgb(160, 125, 193, 80%) #a07dc1CC  
rgb(160, 125, 193, 100%) #a07dc1FF  

Saturated and desaturated colors of #a07dc1

HSL Code Preview
hsl(271, 10%, 62%)  
hsl(271, 20%, 62%)  
hsl(271, 40%, 62%)  
hsl(271, 60%, 62%)  
hsl(271, 80%, 62%)  
hsl(271, 100%, 62%)  

#a07dc1 Color Usage In CSS

 body {
    color: #a07dc1;
    }
 p {
    color: rgb(160, 125, 193);
    }
 header {
    border-bottom:1px solid #a07dc1;
    }
Recent Random Colors