Random Color Generator

#cdd7fe Color

Color Codes
Hex Code #cdd7fe
RGB Code rgb(205, 215, 254)
HSL Code hsl(228, 96%, 90%)

#cdd7fe Color Syntax

rgb()

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

 main {
    background-color: rgb(205, 215, 254);
   }

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(228, 96%, 90%);
  }

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

RGB Code Hex Code Preview
rgb(205, 215, 254, 10%) #cdd7fe1a  
rgb(205, 215, 254, 20%) #cdd7fe33  
rgb(205, 215, 254, 40%) #cdd7fe4C  
rgb(205, 215, 254, 60%) #cdd7fe99  
rgb(205, 215, 254, 80%) #cdd7feCC  
rgb(205, 215, 254, 100%) #cdd7feFF  

Saturated and desaturated colors of #cdd7fe

HSL Code Preview
hsl(228, 10%, 90%)  
hsl(228, 20%, 90%)  
hsl(228, 40%, 90%)  
hsl(228, 60%, 90%)  
hsl(228, 80%, 90%)  
hsl(228, 100%, 90%)  

#cdd7fe Color Usage In CSS

 body {
    color: #cdd7fe;
    }
 p {
    color: rgb(205, 215, 254);
    }
 header {
    border-bottom:1px solid #cdd7fe;
    }
Recent Random Colors