Random Color Generator

#ea07aa Color

Color Codes
Hex Code #ea07aa
RGB Code rgb(234, 07, 170)
HSL Code hsl(317, 94%, 47%)

#ea07aa Color Syntax

rgb()

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

 main {
    background-color: rgb(234, 07, 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(317, 94%, 47%);
  }

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

RGB Code Hex Code Preview
rgb(234, 07, 170, 10%) #ea07aa1a  
rgb(234, 07, 170, 20%) #ea07aa33  
rgb(234, 07, 170, 40%) #ea07aa4C  
rgb(234, 07, 170, 60%) #ea07aa99  
rgb(234, 07, 170, 80%) #ea07aaCC  
rgb(234, 07, 170, 100%) #ea07aaFF  

Saturated and desaturated colors of #ea07aa

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

#ea07aa Color Usage In CSS

 body {
    color: #ea07aa;
    }
 p {
    color: rgb(234, 07, 170);
    }
 header {
    border-bottom:1px solid #ea07aa;
    }
Recent Random Colors