Random Color Generator

#e705f0 Color

Color Codes
Hex Code #e705f0
RGB Code rgb(231, 05, 240)
HSL Code hsl(298, 96%, 48%)

#e705f0 Color Syntax

rgb()

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

 main {
    background-color: rgb(231, 05, 240);
   }

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(298, 96%, 48%);
  }

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

RGB Code Hex Code Preview
rgb(231, 05, 240, 10%) #e705f01a  
rgb(231, 05, 240, 20%) #e705f033  
rgb(231, 05, 240, 40%) #e705f04C  
rgb(231, 05, 240, 60%) #e705f099  
rgb(231, 05, 240, 80%) #e705f0CC  
rgb(231, 05, 240, 100%) #e705f0FF  

Saturated and desaturated colors of #e705f0

HSL Code Preview
hsl(298, 10%, 48%)  
hsl(298, 20%, 48%)  
hsl(298, 40%, 48%)  
hsl(298, 60%, 48%)  
hsl(298, 80%, 48%)  
hsl(298, 100%, 48%)  

#e705f0 Color Usage In CSS

 body {
    color: #e705f0;
    }
 p {
    color: rgb(231, 05, 240);
    }
 header {
    border-bottom:1px solid #e705f0;
    }
Recent Random Colors