Random Color Generator

#c1c2dc Color

Color Codes
Hex Code #c1c2dc
RGB Code rgb(193, 194, 220)
HSL Code hsl(238, 28%, 81%)

#c1c2dc Color Syntax

rgb()

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

 main {
    background-color: rgb(193, 194, 220);
   }

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(238, 28%, 81%);
  }

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

RGB Code Hex Code Preview
rgb(193, 194, 220, 10%) #c1c2dc1a  
rgb(193, 194, 220, 20%) #c1c2dc33  
rgb(193, 194, 220, 40%) #c1c2dc4C  
rgb(193, 194, 220, 60%) #c1c2dc99  
rgb(193, 194, 220, 80%) #c1c2dcCC  
rgb(193, 194, 220, 100%) #c1c2dcFF  

Saturated and desaturated colors of #c1c2dc

HSL Code Preview
hsl(238, 10%, 81%)  
hsl(238, 20%, 81%)  
hsl(238, 40%, 81%)  
hsl(238, 60%, 81%)  
hsl(238, 80%, 81%)  
hsl(238, 100%, 81%)  

#c1c2dc Color Usage In CSS

 body {
    color: #c1c2dc;
    }
 p {
    color: rgb(193, 194, 220);
    }
 header {
    border-bottom:1px solid #c1c2dc;
    }
Recent Random Colors