Random Color Generator

#a0379c Color

Color Codes
Hex Code #a0379c
RGB Code rgb(160, 55, 156)
HSL Code hsl(302, 49%, 42%)

#a0379c Color Syntax

rgb()

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

 main {
    background-color: rgb(160, 55, 156);
   }

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(302, 49%, 42%);
  }

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

RGB Code Hex Code Preview
rgb(160, 55, 156, 10%) #a0379c1a  
rgb(160, 55, 156, 20%) #a0379c33  
rgb(160, 55, 156, 40%) #a0379c4C  
rgb(160, 55, 156, 60%) #a0379c99  
rgb(160, 55, 156, 80%) #a0379cCC  
rgb(160, 55, 156, 100%) #a0379cFF  

Saturated and desaturated colors of #a0379c

HSL Code Preview
hsl(302, 10%, 42%)  
hsl(302, 20%, 42%)  
hsl(302, 40%, 42%)  
hsl(302, 60%, 42%)  
hsl(302, 80%, 42%)  
hsl(302, 100%, 42%)  

#a0379c Color Usage In CSS

 body {
    color: #a0379c;
    }
 p {
    color: rgb(160, 55, 156);
    }
 header {
    border-bottom:1px solid #a0379c;
    }
Recent Random Colors