Random Color Generator

#c2caa1 Color

Color Codes
Hex Code #c2caa1
RGB Code rgb(194, 202, 161)
HSL Code hsl(72, 28%, 71%)

#c2caa1 Color Syntax

rgb()

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

 main {
    background-color: rgb(194, 202, 161);
   }

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(72, 28%, 71%);
  }

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

RGB Code Hex Code Preview
rgb(194, 202, 161, 10%) #c2caa11a  
rgb(194, 202, 161, 20%) #c2caa133  
rgb(194, 202, 161, 40%) #c2caa14C  
rgb(194, 202, 161, 60%) #c2caa199  
rgb(194, 202, 161, 80%) #c2caa1CC  
rgb(194, 202, 161, 100%) #c2caa1FF  

Saturated and desaturated colors of #c2caa1

HSL Code Preview
hsl(72, 10%, 71%)  
hsl(72, 20%, 71%)  
hsl(72, 40%, 71%)  
hsl(72, 60%, 71%)  
hsl(72, 80%, 71%)  
hsl(72, 100%, 71%)  

#c2caa1 Color Usage In CSS

 body {
    color: #c2caa1;
    }
 p {
    color: rgb(194, 202, 161);
    }
 header {
    border-bottom:1px solid #c2caa1;
    }
Recent Random Colors