Random Color Generator

#c9409c Color

Color Codes
Hex Code #c9409c
RGB Code rgb(201, 64, 156)
HSL Code hsl(320, 56%, 52%)

#c9409c Color Syntax

rgb()

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

 main {
    background-color: rgb(201, 64, 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(320, 56%, 52%);
  }

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

RGB Code Hex Code Preview
rgb(201, 64, 156, 10%) #c9409c1a  
rgb(201, 64, 156, 20%) #c9409c33  
rgb(201, 64, 156, 40%) #c9409c4C  
rgb(201, 64, 156, 60%) #c9409c99  
rgb(201, 64, 156, 80%) #c9409cCC  
rgb(201, 64, 156, 100%) #c9409cFF  

Saturated and desaturated colors of #c9409c

HSL Code Preview
hsl(320, 10%, 52%)  
hsl(320, 20%, 52%)  
hsl(320, 40%, 52%)  
hsl(320, 60%, 52%)  
hsl(320, 80%, 52%)  
hsl(320, 100%, 52%)  

#c9409c Color Usage In CSS

 body {
    color: #c9409c;
    }
 p {
    color: rgb(201, 64, 156);
    }
 header {
    border-bottom:1px solid #c9409c;
    }
Recent Random Colors