Random Color Generator

#ded6ae Color

Color Codes
Hex Code #ded6ae
RGB Code rgb(222, 214, 174)
HSL Code hsl(50, 42%, 78%)

#ded6ae Color Syntax

rgb()

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

 main {
    background-color: rgb(222, 214, 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(50, 42%, 78%);
  }

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

RGB Code Hex Code Preview
rgb(222, 214, 174, 10%) #ded6ae1a  
rgb(222, 214, 174, 20%) #ded6ae33  
rgb(222, 214, 174, 40%) #ded6ae4C  
rgb(222, 214, 174, 60%) #ded6ae99  
rgb(222, 214, 174, 80%) #ded6aeCC  
rgb(222, 214, 174, 100%) #ded6aeFF  

Saturated and desaturated colors of #ded6ae

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

#ded6ae Color Usage In CSS

 body {
    color: #ded6ae;
    }
 p {
    color: rgb(222, 214, 174);
    }
 header {
    border-bottom:1px solid #ded6ae;
    }
Recent Random Colors