Random Color Generator

#e07d70 Color

Color Codes
Hex Code #e07d70
RGB Code rgb(224, 125, 112)
HSL Code hsl(7, 64%, 66%)

#e07d70 Color Syntax

rgb()

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

 main {
    background-color: rgb(224, 125, 112);
   }

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

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

RGB Code Hex Code Preview
rgb(224, 125, 112, 10%) #e07d701a  
rgb(224, 125, 112, 20%) #e07d7033  
rgb(224, 125, 112, 40%) #e07d704C  
rgb(224, 125, 112, 60%) #e07d7099  
rgb(224, 125, 112, 80%) #e07d70CC  
rgb(224, 125, 112, 100%) #e07d70FF  

Saturated and desaturated colors of #e07d70

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

#e07d70 Color Usage In CSS

 body {
    color: #e07d70;
    }
 p {
    color: rgb(224, 125, 112);
    }
 header {
    border-bottom:1px solid #e07d70;
    }
Recent Random Colors