Random Color Generator

#c9a4bd Color

Color Codes
Hex Code #c9a4bd
RGB Code rgb(201, 164, 189)
HSL Code hsl(319, 26%, 72%)

#c9a4bd Color Syntax

rgb()

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

 main {
    background-color: rgb(201, 164, 189);
   }

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(319, 26%, 72%);
  }

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

RGB Code Hex Code Preview
rgb(201, 164, 189, 10%) #c9a4bd1a  
rgb(201, 164, 189, 20%) #c9a4bd33  
rgb(201, 164, 189, 40%) #c9a4bd4C  
rgb(201, 164, 189, 60%) #c9a4bd99  
rgb(201, 164, 189, 80%) #c9a4bdCC  
rgb(201, 164, 189, 100%) #c9a4bdFF  

Saturated and desaturated colors of #c9a4bd

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

#c9a4bd Color Usage In CSS

 body {
    color: #c9a4bd;
    }
 p {
    color: rgb(201, 164, 189);
    }
 header {
    border-bottom:1px solid #c9a4bd;
    }
Recent Random Colors