Random Color Generator

#e70b51 Color

Color Codes
Hex Code #e70b51
RGB Code rgb(231, 11, 81)
HSL Code hsl(341, 91%, 47%)

#e70b51 Color Syntax

rgb()

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

 main {
    background-color: rgb(231, 11, 81);
   }

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(341, 91%, 47%);
  }

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

RGB Code Hex Code Preview
rgb(231, 11, 81, 10%) #e70b511a  
rgb(231, 11, 81, 20%) #e70b5133  
rgb(231, 11, 81, 40%) #e70b514C  
rgb(231, 11, 81, 60%) #e70b5199  
rgb(231, 11, 81, 80%) #e70b51CC  
rgb(231, 11, 81, 100%) #e70b51FF  

Saturated and desaturated colors of #e70b51

HSL Code Preview
hsl(341, 10%, 47%)  
hsl(341, 20%, 47%)  
hsl(341, 40%, 47%)  
hsl(341, 60%, 47%)  
hsl(341, 80%, 47%)  
hsl(341, 100%, 47%)  

#e70b51 Color Usage In CSS

 body {
    color: #e70b51;
    }
 p {
    color: rgb(231, 11, 81);
    }
 header {
    border-bottom:1px solid #e70b51;
    }
Recent Random Colors