Random Color Generator

#eb70bb Color

Color Codes
Hex Code #eb70bb
RGB Code rgb(235, 112, 187)
HSL Code hsl(323, 75%, 68%)

#eb70bb Color Syntax

rgb()

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

 main {
    background-color: rgb(235, 112, 187);
   }

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(323, 75%, 68%);
  }

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

RGB Code Hex Code Preview
rgb(235, 112, 187, 10%) #eb70bb1a  
rgb(235, 112, 187, 20%) #eb70bb33  
rgb(235, 112, 187, 40%) #eb70bb4C  
rgb(235, 112, 187, 60%) #eb70bb99  
rgb(235, 112, 187, 80%) #eb70bbCC  
rgb(235, 112, 187, 100%) #eb70bbFF  

Saturated and desaturated colors of #eb70bb

HSL Code Preview
hsl(323, 10%, 68%)  
hsl(323, 20%, 68%)  
hsl(323, 40%, 68%)  
hsl(323, 60%, 68%)  
hsl(323, 80%, 68%)  
hsl(323, 100%, 68%)  

#eb70bb Color Usage In CSS

 body {
    color: #eb70bb;
    }
 p {
    color: rgb(235, 112, 187);
    }
 header {
    border-bottom:1px solid #eb70bb;
    }
Recent Random Colors