Random Color Generator

#e6b2ac Color

Color Codes
Hex Code #e6b2ac
RGB Code rgb(230, 178, 172)
HSL Code hsl(6, 54%, 79%)

#e6b2ac Color Syntax

rgb()

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

 main {
    background-color: rgb(230, 178, 172);
   }

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(6, 54%, 79%);
  }

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

RGB Code Hex Code Preview
rgb(230, 178, 172, 10%) #e6b2ac1a  
rgb(230, 178, 172, 20%) #e6b2ac33  
rgb(230, 178, 172, 40%) #e6b2ac4C  
rgb(230, 178, 172, 60%) #e6b2ac99  
rgb(230, 178, 172, 80%) #e6b2acCC  
rgb(230, 178, 172, 100%) #e6b2acFF  

Saturated and desaturated colors of #e6b2ac

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

#e6b2ac Color Usage In CSS

 body {
    color: #e6b2ac;
    }
 p {
    color: rgb(230, 178, 172);
    }
 header {
    border-bottom:1px solid #e6b2ac;
    }
Recent Random Colors