Random Color Generator

#d7d2eb Color

Color Codes
Hex Code #d7d2eb
RGB Code rgb(215, 210, 235)
HSL Code hsl(252, 38%, 87%)

#d7d2eb Color Syntax

rgb()

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

 main {
    background-color: rgb(215, 210, 235);
   }

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(252, 38%, 87%);
  }

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

RGB Code Hex Code Preview
rgb(215, 210, 235, 10%) #d7d2eb1a  
rgb(215, 210, 235, 20%) #d7d2eb33  
rgb(215, 210, 235, 40%) #d7d2eb4C  
rgb(215, 210, 235, 60%) #d7d2eb99  
rgb(215, 210, 235, 80%) #d7d2ebCC  
rgb(215, 210, 235, 100%) #d7d2ebFF  

Saturated and desaturated colors of #d7d2eb

HSL Code Preview
hsl(252, 10%, 87%)  
hsl(252, 20%, 87%)  
hsl(252, 40%, 87%)  
hsl(252, 60%, 87%)  
hsl(252, 80%, 87%)  
hsl(252, 100%, 87%)  

#d7d2eb Color Usage In CSS

 body {
    color: #d7d2eb;
    }
 p {
    color: rgb(215, 210, 235);
    }
 header {
    border-bottom:1px solid #d7d2eb;
    }
Recent Random Colors