Random Color Generator

#c5d7f2 Color

Color Codes
Hex Code #c5d7f2
RGB Code rgb(197, 215, 242)
HSL Code hsl(216, 63%, 86%)

#c5d7f2 Color Syntax

rgb()

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

 main {
    background-color: rgb(197, 215, 242);
   }

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(216, 63%, 86%);
  }

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

RGB Code Hex Code Preview
rgb(197, 215, 242, 10%) #c5d7f21a  
rgb(197, 215, 242, 20%) #c5d7f233  
rgb(197, 215, 242, 40%) #c5d7f24C  
rgb(197, 215, 242, 60%) #c5d7f299  
rgb(197, 215, 242, 80%) #c5d7f2CC  
rgb(197, 215, 242, 100%) #c5d7f2FF  

Saturated and desaturated colors of #c5d7f2

HSL Code Preview
hsl(216, 10%, 86%)  
hsl(216, 20%, 86%)  
hsl(216, 40%, 86%)  
hsl(216, 60%, 86%)  
hsl(216, 80%, 86%)  
hsl(216, 100%, 86%)  

#c5d7f2 Color Usage In CSS

 body {
    color: #c5d7f2;
    }
 p {
    color: rgb(197, 215, 242);
    }
 header {
    border-bottom:1px solid #c5d7f2;
    }
Recent Random Colors