Random Color Generator

#e1314c Color

Color Codes
Hex Code #e1314c
RGB Code rgb(225, 49, 76)
HSL Code hsl(351, 75%, 54%)

#e1314c Color Syntax

rgb()

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

 main {
    background-color: rgb(225, 49, 76);
   }

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(351, 75%, 54%);
  }

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

RGB Code Hex Code Preview
rgb(225, 49, 76, 10%) #e1314c1a  
rgb(225, 49, 76, 20%) #e1314c33  
rgb(225, 49, 76, 40%) #e1314c4C  
rgb(225, 49, 76, 60%) #e1314c99  
rgb(225, 49, 76, 80%) #e1314cCC  
rgb(225, 49, 76, 100%) #e1314cFF  

Saturated and desaturated colors of #e1314c

HSL Code Preview
hsl(351, 10%, 54%)  
hsl(351, 20%, 54%)  
hsl(351, 40%, 54%)  
hsl(351, 60%, 54%)  
hsl(351, 80%, 54%)  
hsl(351, 100%, 54%)  

#e1314c Color Usage In CSS

 body {
    color: #e1314c;
    }
 p {
    color: rgb(225, 49, 76);
    }
 header {
    border-bottom:1px solid #e1314c;
    }
Recent Random Colors