Random Color Generator

#cc209c Color

Color Codes
Hex Code #cc209c
RGB Code rgb(204, 32, 156)
HSL Code hsl(317, 73%, 46%)

#cc209c Color Syntax

rgb()

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

 main {
    background-color: rgb(204, 32, 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(317, 73%, 46%);
  }

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

RGB Code Hex Code Preview
rgb(204, 32, 156, 10%) #cc209c1a  
rgb(204, 32, 156, 20%) #cc209c33  
rgb(204, 32, 156, 40%) #cc209c4C  
rgb(204, 32, 156, 60%) #cc209c99  
rgb(204, 32, 156, 80%) #cc209cCC  
rgb(204, 32, 156, 100%) #cc209cFF  

Saturated and desaturated colors of #cc209c

HSL Code Preview
hsl(317, 10%, 46%)  
hsl(317, 20%, 46%)  
hsl(317, 40%, 46%)  
hsl(317, 60%, 46%)  
hsl(317, 80%, 46%)  
hsl(317, 100%, 46%)  

#cc209c Color Usage In CSS

 body {
    color: #cc209c;
    }
 p {
    color: rgb(204, 32, 156);
    }
 header {
    border-bottom:1px solid #cc209c;
    }
Recent Random Colors