Random Color Generator

#e2bacd Color

Color Codes
Hex Code #e2bacd
RGB Code rgb(226, 186, 205)
HSL Code hsl(332, 41%, 81%)

#e2bacd Color Syntax

rgb()

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

 main {
    background-color: rgb(226, 186, 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(332, 41%, 81%);
  }

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

RGB Code Hex Code Preview
rgb(226, 186, 205, 10%) #e2bacd1a  
rgb(226, 186, 205, 20%) #e2bacd33  
rgb(226, 186, 205, 40%) #e2bacd4C  
rgb(226, 186, 205, 60%) #e2bacd99  
rgb(226, 186, 205, 80%) #e2bacdCC  
rgb(226, 186, 205, 100%) #e2bacdFF  

Saturated and desaturated colors of #e2bacd

HSL Code Preview
hsl(332, 10%, 81%)  
hsl(332, 20%, 81%)  
hsl(332, 40%, 81%)  
hsl(332, 60%, 81%)  
hsl(332, 80%, 81%)  
hsl(332, 100%, 81%)  

#e2bacd Color Usage In CSS

 body {
    color: #e2bacd;
    }
 p {
    color: rgb(226, 186, 205);
    }
 header {
    border-bottom:1px solid #e2bacd;
    }
Recent Random Colors