Random Color Generator

#dad0ae Color

Color Codes
Hex Code #dad0ae
RGB Code rgb(218, 208, 174)
HSL Code hsl(46, 37%, 77%)

#dad0ae Color Syntax

rgb()

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

 main {
    background-color: rgb(218, 208, 174);
   }

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, 37%, 77%);
  }

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

RGB Code Hex Code Preview
rgb(218, 208, 174, 10%) #dad0ae1a  
rgb(218, 208, 174, 20%) #dad0ae33  
rgb(218, 208, 174, 40%) #dad0ae4C  
rgb(218, 208, 174, 60%) #dad0ae99  
rgb(218, 208, 174, 80%) #dad0aeCC  
rgb(218, 208, 174, 100%) #dad0aeFF  

Saturated and desaturated colors of #dad0ae

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

#dad0ae Color Usage In CSS

 body {
    color: #dad0ae;
    }
 p {
    color: rgb(218, 208, 174);
    }
 header {
    border-bottom:1px solid #dad0ae;
    }
Recent Random Colors