Random Color Generator

#dbd6cf Color

Color Codes
Hex Code #dbd6cf
RGB Code rgb(219, 214, 207)
HSL Code hsl(35, 14%, 84%)

#dbd6cf Color Syntax

rgb()

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

 main {
    background-color: rgb(219, 214, 207);
   }

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(35, 14%, 84%);
  }

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

RGB Code Hex Code Preview
rgb(219, 214, 207, 10%) #dbd6cf1a  
rgb(219, 214, 207, 20%) #dbd6cf33  
rgb(219, 214, 207, 40%) #dbd6cf4C  
rgb(219, 214, 207, 60%) #dbd6cf99  
rgb(219, 214, 207, 80%) #dbd6cfCC  
rgb(219, 214, 207, 100%) #dbd6cfFF  

Saturated and desaturated colors of #dbd6cf

HSL Code Preview
hsl(35, 10%, 84%)  
hsl(35, 20%, 84%)  
hsl(35, 40%, 84%)  
hsl(35, 60%, 84%)  
hsl(35, 80%, 84%)  
hsl(35, 100%, 84%)  

#dbd6cf Color Usage In CSS

 body {
    color: #dbd6cf;
    }
 p {
    color: rgb(219, 214, 207);
    }
 header {
    border-bottom:1px solid #dbd6cf;
    }
Recent Random Colors