Random Color Generator

#c2b479 Color

Color Codes
Hex Code #c2b479
RGB Code rgb(194, 180, 121)
HSL Code hsl(48, 37%, 62%)

#c2b479 Color Syntax

rgb()

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

 main {
    background-color: rgb(194, 180, 121);
   }

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(48, 37%, 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 #c2b479

RGB Code Hex Code Preview
rgb(194, 180, 121, 10%) #c2b4791a  
rgb(194, 180, 121, 20%) #c2b47933  
rgb(194, 180, 121, 40%) #c2b4794C  
rgb(194, 180, 121, 60%) #c2b47999  
rgb(194, 180, 121, 80%) #c2b479CC  
rgb(194, 180, 121, 100%) #c2b479FF  

Saturated and desaturated colors of #c2b479

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

#c2b479 Color Usage In CSS

 body {
    color: #c2b479;
    }
 p {
    color: rgb(194, 180, 121);
    }
 header {
    border-bottom:1px solid #c2b479;
    }
Recent Random Colors