Random Color Generator

#d2c9ab Color

Color Codes
Hex Code #d2c9ab
RGB Code rgb(210, 201, 171)
HSL Code hsl(46, 30%, 75%)

#d2c9ab Color Syntax

rgb()

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

 main {
    background-color: rgb(210, 201, 171);
   }

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(46, 30%, 75%);
  }

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

RGB Code Hex Code Preview
rgb(210, 201, 171, 10%) #d2c9ab1a  
rgb(210, 201, 171, 20%) #d2c9ab33  
rgb(210, 201, 171, 40%) #d2c9ab4C  
rgb(210, 201, 171, 60%) #d2c9ab99  
rgb(210, 201, 171, 80%) #d2c9abCC  
rgb(210, 201, 171, 100%) #d2c9abFF  

Saturated and desaturated colors of #d2c9ab

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

#d2c9ab Color Usage In CSS

 body {
    color: #d2c9ab;
    }
 p {
    color: rgb(210, 201, 171);
    }
 header {
    border-bottom:1px solid #d2c9ab;
    }
Recent Random Colors