Random Color Generator

#e74a53 Color

Color Codes
Hex Code #e74a53
RGB Code rgb(231, 74, 83)
HSL Code hsl(357, 77%, 60%)

#e74a53 Color Syntax

rgb()

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

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

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(357, 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 #e74a53

RGB Code Hex Code Preview
rgb(231, 74, 83, 10%) #e74a531a  
rgb(231, 74, 83, 20%) #e74a5333  
rgb(231, 74, 83, 40%) #e74a534C  
rgb(231, 74, 83, 60%) #e74a5399  
rgb(231, 74, 83, 80%) #e74a53CC  
rgb(231, 74, 83, 100%) #e74a53FF  

Saturated and desaturated colors of #e74a53

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

#e74a53 Color Usage In CSS

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