Random Color Generator

#eb2d70 Color

Color Codes
Hex Code #eb2d70
RGB Code rgb(235, 45, 112)
HSL Code hsl(339, 83%, 55%)

#eb2d70 Color Syntax

rgb()

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

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

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(339, 83%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(235, 45, 112, 10%) #eb2d701a  
rgb(235, 45, 112, 20%) #eb2d7033  
rgb(235, 45, 112, 40%) #eb2d704C  
rgb(235, 45, 112, 60%) #eb2d7099  
rgb(235, 45, 112, 80%) #eb2d70CC  
rgb(235, 45, 112, 100%) #eb2d70FF  

Saturated and desaturated colors of #eb2d70

HSL Code Preview
hsl(339, 10%, 55%)  
hsl(339, 20%, 55%)  
hsl(339, 40%, 55%)  
hsl(339, 60%, 55%)  
hsl(339, 80%, 55%)  
hsl(339, 100%, 55%)  

#eb2d70 Color Usage In CSS

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