Random Color Generator

#e32fcd Color

Color Codes
Hex Code #e32fcd
RGB Code rgb(227, 47, 205)
HSL Code hsl(307, 76%, 54%)

#e32fcd Color Syntax

rgb()

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

 main {
    background-color: rgb(227, 47, 205);
   }

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, 76%, 54%);
  }

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

RGB Code Hex Code Preview
rgb(227, 47, 205, 10%) #e32fcd1a  
rgb(227, 47, 205, 20%) #e32fcd33  
rgb(227, 47, 205, 40%) #e32fcd4C  
rgb(227, 47, 205, 60%) #e32fcd99  
rgb(227, 47, 205, 80%) #e32fcdCC  
rgb(227, 47, 205, 100%) #e32fcdFF  

Saturated and desaturated colors of #e32fcd

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

#e32fcd Color Usage In CSS

 body {
    color: #e32fcd;
    }
 p {
    color: rgb(227, 47, 205);
    }
 header {
    border-bottom:1px solid #e32fcd;
    }
Recent Random Colors