Random Color Generator

#d5e2cc Color

Color Codes
Hex Code #d5e2cc
RGB Code rgb(213, 226, 204)
HSL Code hsl(95, 28%, 84%)

#d5e2cc Color Syntax

rgb()

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

 main {
    background-color: rgb(213, 226, 204);
   }

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(95, 28%, 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 #d5e2cc

RGB Code Hex Code Preview
rgb(213, 226, 204, 10%) #d5e2cc1a  
rgb(213, 226, 204, 20%) #d5e2cc33  
rgb(213, 226, 204, 40%) #d5e2cc4C  
rgb(213, 226, 204, 60%) #d5e2cc99  
rgb(213, 226, 204, 80%) #d5e2ccCC  
rgb(213, 226, 204, 100%) #d5e2ccFF  

Saturated and desaturated colors of #d5e2cc

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

#d5e2cc Color Usage In CSS

 body {
    color: #d5e2cc;
    }
 p {
    color: rgb(213, 226, 204);
    }
 header {
    border-bottom:1px solid #d5e2cc;
    }
Recent Random Colors