Random Color Generator

#ebc9dc Color

Color Codes
Hex Code #ebc9dc
RGB Code rgb(235, 201, 220)
HSL Code hsl(326, 46%, 85%)

#ebc9dc Color Syntax

rgb()

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

 main {
    background-color: rgb(235, 201, 220);
   }

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(326, 46%, 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 #ebc9dc

RGB Code Hex Code Preview
rgb(235, 201, 220, 10%) #ebc9dc1a  
rgb(235, 201, 220, 20%) #ebc9dc33  
rgb(235, 201, 220, 40%) #ebc9dc4C  
rgb(235, 201, 220, 60%) #ebc9dc99  
rgb(235, 201, 220, 80%) #ebc9dcCC  
rgb(235, 201, 220, 100%) #ebc9dcFF  

Saturated and desaturated colors of #ebc9dc

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

#ebc9dc Color Usage In CSS

 body {
    color: #ebc9dc;
    }
 p {
    color: rgb(235, 201, 220);
    }
 header {
    border-bottom:1px solid #ebc9dc;
    }
Recent Random Colors