Random Color Generator

#e701fa Color

Color Codes
Hex Code #e701fa
RGB Code rgb(231, 01, 250)
HSL Code hsl(295, 99%, 49%)

#e701fa Color Syntax

rgb()

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

 main {
    background-color: rgb(231, 01, 250);
   }

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(295, 99%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(231, 01, 250, 10%) #e701fa1a  
rgb(231, 01, 250, 20%) #e701fa33  
rgb(231, 01, 250, 40%) #e701fa4C  
rgb(231, 01, 250, 60%) #e701fa99  
rgb(231, 01, 250, 80%) #e701faCC  
rgb(231, 01, 250, 100%) #e701faFF  

Saturated and desaturated colors of #e701fa

HSL Code Preview
hsl(295, 10%, 49%)  
hsl(295, 20%, 49%)  
hsl(295, 40%, 49%)  
hsl(295, 60%, 49%)  
hsl(295, 80%, 49%)  
hsl(295, 100%, 49%)  

#e701fa Color Usage In CSS

 body {
    color: #e701fa;
    }
 p {
    color: rgb(231, 01, 250);
    }
 header {
    border-bottom:1px solid #e701fa;
    }
Recent Random Colors