Random Color Generator

#e70acb Color

Color Codes
Hex Code #e70acb
RGB Code rgb(231, 10, 203)
HSL Code hsl(308, 92%, 47%)

#e70acb Color Syntax

rgb()

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

 main {
    background-color: rgb(231, 10, 203);
   }

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(308, 92%, 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 #e70acb

RGB Code Hex Code Preview
rgb(231, 10, 203, 10%) #e70acb1a  
rgb(231, 10, 203, 20%) #e70acb33  
rgb(231, 10, 203, 40%) #e70acb4C  
rgb(231, 10, 203, 60%) #e70acb99  
rgb(231, 10, 203, 80%) #e70acbCC  
rgb(231, 10, 203, 100%) #e70acbFF  

Saturated and desaturated colors of #e70acb

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

#e70acb Color Usage In CSS

 body {
    color: #e70acb;
    }
 p {
    color: rgb(231, 10, 203);
    }
 header {
    border-bottom:1px solid #e70acb;
    }
Recent Random Colors