Random Color Generator

#c9e1a9 Color

Color Codes
Hex Code #c9e1a9
RGB Code rgb(201, 225, 169)
HSL Code hsl(86, 48%, 77%)

#c9e1a9 Color Syntax

rgb()

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

 main {
    background-color: rgb(201, 225, 169);
   }

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(86, 48%, 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 #c9e1a9

RGB Code Hex Code Preview
rgb(201, 225, 169, 10%) #c9e1a91a  
rgb(201, 225, 169, 20%) #c9e1a933  
rgb(201, 225, 169, 40%) #c9e1a94C  
rgb(201, 225, 169, 60%) #c9e1a999  
rgb(201, 225, 169, 80%) #c9e1a9CC  
rgb(201, 225, 169, 100%) #c9e1a9FF  

Saturated and desaturated colors of #c9e1a9

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

#c9e1a9 Color Usage In CSS

 body {
    color: #c9e1a9;
    }
 p {
    color: rgb(201, 225, 169);
    }
 header {
    border-bottom:1px solid #c9e1a9;
    }
Recent Random Colors