Random Color Generator

#e95d48 Color

Color Codes
Hex Code #e95d48
RGB Code rgb(233, 93, 72)
HSL Code hsl(8, 79%, 60%)

#e95d48 Color Syntax

rgb()

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

 main {
    background-color: rgb(233, 93, 72);
   }

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(8, 79%, 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 #e95d48

RGB Code Hex Code Preview
rgb(233, 93, 72, 10%) #e95d481a  
rgb(233, 93, 72, 20%) #e95d4833  
rgb(233, 93, 72, 40%) #e95d484C  
rgb(233, 93, 72, 60%) #e95d4899  
rgb(233, 93, 72, 80%) #e95d48CC  
rgb(233, 93, 72, 100%) #e95d48FF  

Saturated and desaturated colors of #e95d48

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

#e95d48 Color Usage In CSS

 body {
    color: #e95d48;
    }
 p {
    color: rgb(233, 93, 72);
    }
 header {
    border-bottom:1px solid #e95d48;
    }
Recent Random Colors