Random Color Generator

#c201aa Color

Color Codes
Hex Code #c201aa
RGB Code rgb(194, 01, 170)
HSL Code hsl(307, 99%, 38%)

#c201aa Color Syntax

rgb()

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

 main {
    background-color: rgb(194, 01, 170);
   }

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(307, 99%, 38%);
  }

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

RGB Code Hex Code Preview
rgb(194, 01, 170, 10%) #c201aa1a  
rgb(194, 01, 170, 20%) #c201aa33  
rgb(194, 01, 170, 40%) #c201aa4C  
rgb(194, 01, 170, 60%) #c201aa99  
rgb(194, 01, 170, 80%) #c201aaCC  
rgb(194, 01, 170, 100%) #c201aaFF  

Saturated and desaturated colors of #c201aa

HSL Code Preview
hsl(307, 10%, 38%)  
hsl(307, 20%, 38%)  
hsl(307, 40%, 38%)  
hsl(307, 60%, 38%)  
hsl(307, 80%, 38%)  
hsl(307, 100%, 38%)  

#c201aa Color Usage In CSS

 body {
    color: #c201aa;
    }
 p {
    color: rgb(194, 01, 170);
    }
 header {
    border-bottom:1px solid #c201aa;
    }
Recent Random Colors