Random Color Generator

#e1354b Color

Color Codes
Hex Code #e1354b
RGB Code rgb(225, 53, 75)
HSL Code hsl(352, 74%, 55%)

#e1354b Color Syntax

rgb()

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

 main {
    background-color: rgb(225, 53, 75);
   }

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(352, 74%, 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 #e1354b

RGB Code Hex Code Preview
rgb(225, 53, 75, 10%) #e1354b1a  
rgb(225, 53, 75, 20%) #e1354b33  
rgb(225, 53, 75, 40%) #e1354b4C  
rgb(225, 53, 75, 60%) #e1354b99  
rgb(225, 53, 75, 80%) #e1354bCC  
rgb(225, 53, 75, 100%) #e1354bFF  

Saturated and desaturated colors of #e1354b

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

#e1354b Color Usage In CSS

 body {
    color: #e1354b;
    }
 p {
    color: rgb(225, 53, 75);
    }
 header {
    border-bottom:1px solid #e1354b;
    }
Recent Random Colors