Random Color Generator

#e2bef4 Color

Color Codes
Hex Code #e2bef4
RGB Code rgb(226, 190, 244)
HSL Code hsl(280, 71%, 85%)

#e2bef4 Color Syntax

rgb()

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

 main {
    background-color: rgb(226, 190, 244);
   }

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(280, 71%, 85%);
  }

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

RGB Code Hex Code Preview
rgb(226, 190, 244, 10%) #e2bef41a  
rgb(226, 190, 244, 20%) #e2bef433  
rgb(226, 190, 244, 40%) #e2bef44C  
rgb(226, 190, 244, 60%) #e2bef499  
rgb(226, 190, 244, 80%) #e2bef4CC  
rgb(226, 190, 244, 100%) #e2bef4FF  

Saturated and desaturated colors of #e2bef4

HSL Code Preview
hsl(280, 10%, 85%)  
hsl(280, 20%, 85%)  
hsl(280, 40%, 85%)  
hsl(280, 60%, 85%)  
hsl(280, 80%, 85%)  
hsl(280, 100%, 85%)  

#e2bef4 Color Usage In CSS

 body {
    color: #e2bef4;
    }
 p {
    color: rgb(226, 190, 244);
    }
 header {
    border-bottom:1px solid #e2bef4;
    }
Recent Random Colors