Random Color Generator

#cfd8df Color

Color Codes
Hex Code #cfd8df
RGB Code rgb(207, 216, 223)
HSL Code hsl(206, 20%, 84%)

#cfd8df Color Syntax

rgb()

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

 main {
    background-color: rgb(207, 216, 223);
   }

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(206, 20%, 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 #cfd8df

RGB Code Hex Code Preview
rgb(207, 216, 223, 10%) #cfd8df1a  
rgb(207, 216, 223, 20%) #cfd8df33  
rgb(207, 216, 223, 40%) #cfd8df4C  
rgb(207, 216, 223, 60%) #cfd8df99  
rgb(207, 216, 223, 80%) #cfd8dfCC  
rgb(207, 216, 223, 100%) #cfd8dfFF  

Saturated and desaturated colors of #cfd8df

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

#cfd8df Color Usage In CSS

 body {
    color: #cfd8df;
    }
 p {
    color: rgb(207, 216, 223);
    }
 header {
    border-bottom:1px solid #cfd8df;
    }
Recent Random Colors