Random Color Generator

#e881cd Color

Color Codes
Hex Code #e881cd
RGB Code rgb(232, 129, 205)
HSL Code hsl(316, 69%, 71%)

#e881cd Color Syntax

rgb()

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

 main {
    background-color: rgb(232, 129, 205);
   }

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, 69%, 71%);
  }

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

RGB Code Hex Code Preview
rgb(232, 129, 205, 10%) #e881cd1a  
rgb(232, 129, 205, 20%) #e881cd33  
rgb(232, 129, 205, 40%) #e881cd4C  
rgb(232, 129, 205, 60%) #e881cd99  
rgb(232, 129, 205, 80%) #e881cdCC  
rgb(232, 129, 205, 100%) #e881cdFF  

Saturated and desaturated colors of #e881cd

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

#e881cd Color Usage In CSS

 body {
    color: #e881cd;
    }
 p {
    color: rgb(232, 129, 205);
    }
 header {
    border-bottom:1px solid #e881cd;
    }
Recent Random Colors