Random Color Generator

#c94594 Color

Color Codes
Hex Code #c94594
RGB Code rgb(201, 69, 148)
HSL Code hsl(324, 55%, 53%)

#c94594 Color Syntax

rgb()

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

 main {
    background-color: rgb(201, 69, 148);
   }

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(324, 55%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(201, 69, 148, 10%) #c945941a  
rgb(201, 69, 148, 20%) #c9459433  
rgb(201, 69, 148, 40%) #c945944C  
rgb(201, 69, 148, 60%) #c9459499  
rgb(201, 69, 148, 80%) #c94594CC  
rgb(201, 69, 148, 100%) #c94594FF  

Saturated and desaturated colors of #c94594

HSL Code Preview
hsl(324, 10%, 53%)  
hsl(324, 20%, 53%)  
hsl(324, 40%, 53%)  
hsl(324, 60%, 53%)  
hsl(324, 80%, 53%)  
hsl(324, 100%, 53%)  

#c94594 Color Usage In CSS

 body {
    color: #c94594;
    }
 p {
    color: rgb(201, 69, 148);
    }
 header {
    border-bottom:1px solid #c94594;
    }
Recent Random Colors