Random Color Generator

#c5c6fc Color

Color Codes
Hex Code #c5c6fc
RGB Code rgb(197, 198, 252)
HSL Code hsl(239, 90%, 88%)

#c5c6fc Color Syntax

rgb()

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

 main {
    background-color: rgb(197, 198, 252);
   }

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(239, 90%, 88%);
  }

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

RGB Code Hex Code Preview
rgb(197, 198, 252, 10%) #c5c6fc1a  
rgb(197, 198, 252, 20%) #c5c6fc33  
rgb(197, 198, 252, 40%) #c5c6fc4C  
rgb(197, 198, 252, 60%) #c5c6fc99  
rgb(197, 198, 252, 80%) #c5c6fcCC  
rgb(197, 198, 252, 100%) #c5c6fcFF  

Saturated and desaturated colors of #c5c6fc

HSL Code Preview
hsl(239, 10%, 88%)  
hsl(239, 20%, 88%)  
hsl(239, 40%, 88%)  
hsl(239, 60%, 88%)  
hsl(239, 80%, 88%)  
hsl(239, 100%, 88%)  

#c5c6fc Color Usage In CSS

 body {
    color: #c5c6fc;
    }
 p {
    color: rgb(197, 198, 252);
    }
 header {
    border-bottom:1px solid #c5c6fc;
    }
Recent Random Colors