Random Color Generator

#e7645f Color

Color Codes
Hex Code #e7645f
RGB Code rgb(231, 100, 95)
HSL Code hsl(2, 74%, 64%)

#e7645f Color Syntax

rgb()

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

 main {
    background-color: rgb(231, 100, 95);
   }

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(2, 74%, 64%);
  }

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

RGB Code Hex Code Preview
rgb(231, 100, 95, 10%) #e7645f1a  
rgb(231, 100, 95, 20%) #e7645f33  
rgb(231, 100, 95, 40%) #e7645f4C  
rgb(231, 100, 95, 60%) #e7645f99  
rgb(231, 100, 95, 80%) #e7645fCC  
rgb(231, 100, 95, 100%) #e7645fFF  

Saturated and desaturated colors of #e7645f

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

#e7645f Color Usage In CSS

 body {
    color: #e7645f;
    }
 p {
    color: rgb(231, 100, 95);
    }
 header {
    border-bottom:1px solid #e7645f;
    }
Recent Random Colors