Random Color Generator

#e10c76 Color

Color Codes
Hex Code #e10c76
RGB Code rgb(225, 12, 118)
HSL Code hsl(330, 90%, 46%)

#e10c76 Color Syntax

rgb()

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

 main {
    background-color: rgb(225, 12, 118);
   }

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(330, 90%, 46%);
  }

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

RGB Code Hex Code Preview
rgb(225, 12, 118, 10%) #e10c761a  
rgb(225, 12, 118, 20%) #e10c7633  
rgb(225, 12, 118, 40%) #e10c764C  
rgb(225, 12, 118, 60%) #e10c7699  
rgb(225, 12, 118, 80%) #e10c76CC  
rgb(225, 12, 118, 100%) #e10c76FF  

Saturated and desaturated colors of #e10c76

HSL Code Preview
hsl(330, 10%, 46%)  
hsl(330, 20%, 46%)  
hsl(330, 40%, 46%)  
hsl(330, 60%, 46%)  
hsl(330, 80%, 46%)  
hsl(330, 100%, 46%)  

#e10c76 Color Usage In CSS

 body {
    color: #e10c76;
    }
 p {
    color: rgb(225, 12, 118);
    }
 header {
    border-bottom:1px solid #e10c76;
    }
Recent Random Colors