Random Color Generator

#e685fa Color

Color Codes
Hex Code #e685fa
RGB Code rgb(230, 133, 250)
HSL Code hsl(290, 92%, 75%)

#e685fa Color Syntax

rgb()

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

 main {
    background-color: rgb(230, 133, 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(290, 92%, 75%);
  }

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

RGB Code Hex Code Preview
rgb(230, 133, 250, 10%) #e685fa1a  
rgb(230, 133, 250, 20%) #e685fa33  
rgb(230, 133, 250, 40%) #e685fa4C  
rgb(230, 133, 250, 60%) #e685fa99  
rgb(230, 133, 250, 80%) #e685faCC  
rgb(230, 133, 250, 100%) #e685faFF  

Saturated and desaturated colors of #e685fa

HSL Code Preview
hsl(290, 10%, 75%)  
hsl(290, 20%, 75%)  
hsl(290, 40%, 75%)  
hsl(290, 60%, 75%)  
hsl(290, 80%, 75%)  
hsl(290, 100%, 75%)  

#e685fa Color Usage In CSS

 body {
    color: #e685fa;
    }
 p {
    color: rgb(230, 133, 250);
    }
 header {
    border-bottom:1px solid #e685fa;
    }
Recent Random Colors