Random Color Generator

#c9d4dd Color

Color Codes
Hex Code #c9d4dd
RGB Code rgb(201, 212, 221)
HSL Code hsl(207, 23%, 83%)

#c9d4dd Color Syntax

rgb()

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

 main {
    background-color: rgb(201, 212, 221);
   }

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(207, 23%, 83%);
  }

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

RGB Code Hex Code Preview
rgb(201, 212, 221, 10%) #c9d4dd1a  
rgb(201, 212, 221, 20%) #c9d4dd33  
rgb(201, 212, 221, 40%) #c9d4dd4C  
rgb(201, 212, 221, 60%) #c9d4dd99  
rgb(201, 212, 221, 80%) #c9d4ddCC  
rgb(201, 212, 221, 100%) #c9d4ddFF  

Saturated and desaturated colors of #c9d4dd

HSL Code Preview
hsl(207, 10%, 83%)  
hsl(207, 20%, 83%)  
hsl(207, 40%, 83%)  
hsl(207, 60%, 83%)  
hsl(207, 80%, 83%)  
hsl(207, 100%, 83%)  

#c9d4dd Color Usage In CSS

 body {
    color: #c9d4dd;
    }
 p {
    color: rgb(201, 212, 221);
    }
 header {
    border-bottom:1px solid #c9d4dd;
    }
Recent Random Colors