Random Color Generator

#e6b3ce Color

Color Codes
Hex Code #e6b3ce
RGB Code rgb(230, 179, 206)
HSL Code hsl(328, 50%, 80%)

#e6b3ce Color Syntax

rgb()

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

 main {
    background-color: rgb(230, 179, 206);
   }

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(328, 50%, 80%);
  }

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

RGB Code Hex Code Preview
rgb(230, 179, 206, 10%) #e6b3ce1a  
rgb(230, 179, 206, 20%) #e6b3ce33  
rgb(230, 179, 206, 40%) #e6b3ce4C  
rgb(230, 179, 206, 60%) #e6b3ce99  
rgb(230, 179, 206, 80%) #e6b3ceCC  
rgb(230, 179, 206, 100%) #e6b3ceFF  

Saturated and desaturated colors of #e6b3ce

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

#e6b3ce Color Usage In CSS

 body {
    color: #e6b3ce;
    }
 p {
    color: rgb(230, 179, 206);
    }
 header {
    border-bottom:1px solid #e6b3ce;
    }
Recent Random Colors