Random Color Generator

#a3567c Color

Color Codes
Hex Code #a3567c
RGB Code rgb(163, 86, 124)
HSL Code hsl(330, 31%, 49%)

#a3567c Color Syntax

rgb()

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

 main {
    background-color: rgb(163, 86, 124);
   }

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(330, 31%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(163, 86, 124, 10%) #a3567c1a  
rgb(163, 86, 124, 20%) #a3567c33  
rgb(163, 86, 124, 40%) #a3567c4C  
rgb(163, 86, 124, 60%) #a3567c99  
rgb(163, 86, 124, 80%) #a3567cCC  
rgb(163, 86, 124, 100%) #a3567cFF  

Saturated and desaturated colors of #a3567c

HSL Code Preview
hsl(330, 10%, 49%)  
hsl(330, 20%, 49%)  
hsl(330, 40%, 49%)  
hsl(330, 60%, 49%)  
hsl(330, 80%, 49%)  
hsl(330, 100%, 49%)  

#a3567c Color Usage In CSS

 body {
    color: #a3567c;
    }
 p {
    color: rgb(163, 86, 124);
    }
 header {
    border-bottom:1px solid #a3567c;
    }
Recent Random Colors