Random Color Generator

#dcc8da Color

Color Codes
Hex Code #dcc8da
RGB Code rgb(220, 200, 218)
HSL Code hsl(306, 22%, 82%)

#dcc8da Color Syntax

rgb()

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

 main {
    background-color: rgb(220, 200, 218);
   }

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(306, 22%, 82%);
  }

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

RGB Code Hex Code Preview
rgb(220, 200, 218, 10%) #dcc8da1a  
rgb(220, 200, 218, 20%) #dcc8da33  
rgb(220, 200, 218, 40%) #dcc8da4C  
rgb(220, 200, 218, 60%) #dcc8da99  
rgb(220, 200, 218, 80%) #dcc8daCC  
rgb(220, 200, 218, 100%) #dcc8daFF  

Saturated and desaturated colors of #dcc8da

HSL Code Preview
hsl(306, 10%, 82%)  
hsl(306, 20%, 82%)  
hsl(306, 40%, 82%)  
hsl(306, 60%, 82%)  
hsl(306, 80%, 82%)  
hsl(306, 100%, 82%)  

#dcc8da Color Usage In CSS

 body {
    color: #dcc8da;
    }
 p {
    color: rgb(220, 200, 218);
    }
 header {
    border-bottom:1px solid #dcc8da;
    }
Recent Random Colors