Random Color Generator

#eb75fc Color

Color Codes
Hex Code #eb75fc
RGB Code rgb(235, 117, 252)
HSL Code hsl(292, 96%, 72%)

#eb75fc Color Syntax

rgb()

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

 main {
    background-color: rgb(235, 117, 252);
   }

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(292, 96%, 72%);
  }

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

RGB Code Hex Code Preview
rgb(235, 117, 252, 10%) #eb75fc1a  
rgb(235, 117, 252, 20%) #eb75fc33  
rgb(235, 117, 252, 40%) #eb75fc4C  
rgb(235, 117, 252, 60%) #eb75fc99  
rgb(235, 117, 252, 80%) #eb75fcCC  
rgb(235, 117, 252, 100%) #eb75fcFF  

Saturated and desaturated colors of #eb75fc

HSL Code Preview
hsl(292, 10%, 72%)  
hsl(292, 20%, 72%)  
hsl(292, 40%, 72%)  
hsl(292, 60%, 72%)  
hsl(292, 80%, 72%)  
hsl(292, 100%, 72%)  

#eb75fc Color Usage In CSS

 body {
    color: #eb75fc;
    }
 p {
    color: rgb(235, 117, 252);
    }
 header {
    border-bottom:1px solid #eb75fc;
    }
Recent Random Colors