Random Color Generator

#c3c1ca Color

Color Codes
Hex Code #c3c1ca
RGB Code rgb(195, 193, 202)
HSL Code hsl(253, 8%, 77%)

#c3c1ca Color Syntax

rgb()

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

 main {
    background-color: rgb(195, 193, 202);
   }

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(253, 8%, 77%);
  }

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

RGB Code Hex Code Preview
rgb(195, 193, 202, 10%) #c3c1ca1a  
rgb(195, 193, 202, 20%) #c3c1ca33  
rgb(195, 193, 202, 40%) #c3c1ca4C  
rgb(195, 193, 202, 60%) #c3c1ca99  
rgb(195, 193, 202, 80%) #c3c1caCC  
rgb(195, 193, 202, 100%) #c3c1caFF  

Saturated and desaturated colors of #c3c1ca

HSL Code Preview
hsl(253, 10%, 77%)  
hsl(253, 20%, 77%)  
hsl(253, 40%, 77%)  
hsl(253, 60%, 77%)  
hsl(253, 80%, 77%)  
hsl(253, 100%, 77%)  

#c3c1ca Color Usage In CSS

 body {
    color: #c3c1ca;
    }
 p {
    color: rgb(195, 193, 202);
    }
 header {
    border-bottom:1px solid #c3c1ca;
    }
Recent Random Colors