Random Color Generator

#dedad5 Color

Color Codes
Hex Code #dedad5
RGB Code rgb(222, 218, 213)
HSL Code hsl(33, 12%, 85%)

#dedad5 Color Syntax

rgb()

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

 main {
    background-color: rgb(222, 218, 213);
   }

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(33, 12%, 85%);
  }

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

RGB Code Hex Code Preview
rgb(222, 218, 213, 10%) #dedad51a  
rgb(222, 218, 213, 20%) #dedad533  
rgb(222, 218, 213, 40%) #dedad54C  
rgb(222, 218, 213, 60%) #dedad599  
rgb(222, 218, 213, 80%) #dedad5CC  
rgb(222, 218, 213, 100%) #dedad5FF  

Saturated and desaturated colors of #dedad5

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

#dedad5 Color Usage In CSS

 body {
    color: #dedad5;
    }
 p {
    color: rgb(222, 218, 213);
    }
 header {
    border-bottom:1px solid #dedad5;
    }
Recent Random Colors