Random Color Generator

#e74a60 Color

Color Codes
Hex Code #e74a60
RGB Code rgb(231, 74, 96)
HSL Code hsl(352, 77%, 60%)

#e74a60 Color Syntax

rgb()

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

 main {
    background-color: rgb(231, 74, 96);
   }

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, 77%, 60%);
  }

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

RGB Code Hex Code Preview
rgb(231, 74, 96, 10%) #e74a601a  
rgb(231, 74, 96, 20%) #e74a6033  
rgb(231, 74, 96, 40%) #e74a604C  
rgb(231, 74, 96, 60%) #e74a6099  
rgb(231, 74, 96, 80%) #e74a60CC  
rgb(231, 74, 96, 100%) #e74a60FF  

Saturated and desaturated colors of #e74a60

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

#e74a60 Color Usage In CSS

 body {
    color: #e74a60;
    }
 p {
    color: rgb(231, 74, 96);
    }
 header {
    border-bottom:1px solid #e74a60;
    }
Recent Random Colors