Random Color Generator

#e1d0fc Color

Color Codes
Hex Code #e1d0fc
RGB Code rgb(225, 208, 252)
HSL Code hsl(263, 88%, 90%)

#e1d0fc Color Syntax

rgb()

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

 main {
    background-color: rgb(225, 208, 252);
   }

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(263, 88%, 90%);
  }

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

RGB Code Hex Code Preview
rgb(225, 208, 252, 10%) #e1d0fc1a  
rgb(225, 208, 252, 20%) #e1d0fc33  
rgb(225, 208, 252, 40%) #e1d0fc4C  
rgb(225, 208, 252, 60%) #e1d0fc99  
rgb(225, 208, 252, 80%) #e1d0fcCC  
rgb(225, 208, 252, 100%) #e1d0fcFF  

Saturated and desaturated colors of #e1d0fc

HSL Code Preview
hsl(263, 10%, 90%)  
hsl(263, 20%, 90%)  
hsl(263, 40%, 90%)  
hsl(263, 60%, 90%)  
hsl(263, 80%, 90%)  
hsl(263, 100%, 90%)  

#e1d0fc Color Usage In CSS

 body {
    color: #e1d0fc;
    }
 p {
    color: rgb(225, 208, 252);
    }
 header {
    border-bottom:1px solid #e1d0fc;
    }
Recent Random Colors