Random Color Generator

#e691cf Color

Color Codes
Hex Code #e691cf
RGB Code rgb(230, 145, 207)
HSL Code hsl(316, 63%, 74%)

#e691cf Color Syntax

rgb()

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

 main {
    background-color: rgb(230, 145, 207);
   }

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(316, 63%, 74%);
  }

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

RGB Code Hex Code Preview
rgb(230, 145, 207, 10%) #e691cf1a  
rgb(230, 145, 207, 20%) #e691cf33  
rgb(230, 145, 207, 40%) #e691cf4C  
rgb(230, 145, 207, 60%) #e691cf99  
rgb(230, 145, 207, 80%) #e691cfCC  
rgb(230, 145, 207, 100%) #e691cfFF  

Saturated and desaturated colors of #e691cf

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

#e691cf Color Usage In CSS

 body {
    color: #e691cf;
    }
 p {
    color: rgb(230, 145, 207);
    }
 header {
    border-bottom:1px solid #e691cf;
    }
Recent Random Colors