Random Color Generator

#e7696f Color

Color Codes
Hex Code #e7696f
RGB Code rgb(231, 105, 111)
HSL Code hsl(357, 72%, 66%)

#e7696f Color Syntax

rgb()

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

 main {
    background-color: rgb(231, 105, 111);
   }

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, 72%, 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 #e7696f

RGB Code Hex Code Preview
rgb(231, 105, 111, 10%) #e7696f1a  
rgb(231, 105, 111, 20%) #e7696f33  
rgb(231, 105, 111, 40%) #e7696f4C  
rgb(231, 105, 111, 60%) #e7696f99  
rgb(231, 105, 111, 80%) #e7696fCC  
rgb(231, 105, 111, 100%) #e7696fFF  

Saturated and desaturated colors of #e7696f

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

#e7696f Color Usage In CSS

 body {
    color: #e7696f;
    }
 p {
    color: rgb(231, 105, 111);
    }
 header {
    border-bottom:1px solid #e7696f;
    }
Recent Random Colors