Random Color Generator

#e352aa Color

Color Codes
Hex Code #e352aa
RGB Code rgb(227, 82, 170)
HSL Code hsl(324, 72%, 61%)

#e352aa Color Syntax

rgb()

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

 main {
    background-color: rgb(227, 82, 170);
   }

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, 72%, 61%);
  }

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

RGB Code Hex Code Preview
rgb(227, 82, 170, 10%) #e352aa1a  
rgb(227, 82, 170, 20%) #e352aa33  
rgb(227, 82, 170, 40%) #e352aa4C  
rgb(227, 82, 170, 60%) #e352aa99  
rgb(227, 82, 170, 80%) #e352aaCC  
rgb(227, 82, 170, 100%) #e352aaFF  

Saturated and desaturated colors of #e352aa

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

#e352aa Color Usage In CSS

 body {
    color: #e352aa;
    }
 p {
    color: rgb(227, 82, 170);
    }
 header {
    border-bottom:1px solid #e352aa;
    }
Recent Random Colors