Random Color Generator

#c204bf Color

Color Codes
Hex Code #c204bf
RGB Code rgb(194, 04, 191)
HSL Code hsl(301, 96%, 39%)

#c204bf Color Syntax

rgb()

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

 main {
    background-color: rgb(194, 04, 191);
   }

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(301, 96%, 39%);
  }

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

RGB Code Hex Code Preview
rgb(194, 04, 191, 10%) #c204bf1a  
rgb(194, 04, 191, 20%) #c204bf33  
rgb(194, 04, 191, 40%) #c204bf4C  
rgb(194, 04, 191, 60%) #c204bf99  
rgb(194, 04, 191, 80%) #c204bfCC  
rgb(194, 04, 191, 100%) #c204bfFF  

Saturated and desaturated colors of #c204bf

HSL Code Preview
hsl(301, 10%, 39%)  
hsl(301, 20%, 39%)  
hsl(301, 40%, 39%)  
hsl(301, 60%, 39%)  
hsl(301, 80%, 39%)  
hsl(301, 100%, 39%)  

#c204bf Color Usage In CSS

 body {
    color: #c204bf;
    }
 p {
    color: rgb(194, 04, 191);
    }
 header {
    border-bottom:1px solid #c204bf;
    }
Recent Random Colors