Random Color Generator

#c4a57a Color

Color Codes
Hex Code #c4a57a
RGB Code rgb(196, 165, 122)
HSL Code hsl(35, 39%, 62%)

#c4a57a Color Syntax

rgb()

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

 main {
    background-color: rgb(196, 165, 122);
   }

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(35, 39%, 62%);
  }

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

RGB Code Hex Code Preview
rgb(196, 165, 122, 10%) #c4a57a1a  
rgb(196, 165, 122, 20%) #c4a57a33  
rgb(196, 165, 122, 40%) #c4a57a4C  
rgb(196, 165, 122, 60%) #c4a57a99  
rgb(196, 165, 122, 80%) #c4a57aCC  
rgb(196, 165, 122, 100%) #c4a57aFF  

Saturated and desaturated colors of #c4a57a

HSL Code Preview
hsl(35, 10%, 62%)  
hsl(35, 20%, 62%)  
hsl(35, 40%, 62%)  
hsl(35, 60%, 62%)  
hsl(35, 80%, 62%)  
hsl(35, 100%, 62%)  

#c4a57a Color Usage In CSS

 body {
    color: #c4a57a;
    }
 p {
    color: rgb(196, 165, 122);
    }
 header {
    border-bottom:1px solid #c4a57a;
    }
Recent Random Colors