Random Color Generator

#c7b06a Color

Color Codes
Hex Code #c7b06a
RGB Code rgb(199, 176, 106)
HSL Code hsl(45, 45%, 60%)

#c7b06a Color Syntax

rgb()

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

 main {
    background-color: rgb(199, 176, 106);
   }

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(45, 45%, 60%);
  }

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

RGB Code Hex Code Preview
rgb(199, 176, 106, 10%) #c7b06a1a  
rgb(199, 176, 106, 20%) #c7b06a33  
rgb(199, 176, 106, 40%) #c7b06a4C  
rgb(199, 176, 106, 60%) #c7b06a99  
rgb(199, 176, 106, 80%) #c7b06aCC  
rgb(199, 176, 106, 100%) #c7b06aFF  

Saturated and desaturated colors of #c7b06a

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

#c7b06a Color Usage In CSS

 body {
    color: #c7b06a;
    }
 p {
    color: rgb(199, 176, 106);
    }
 header {
    border-bottom:1px solid #c7b06a;
    }
Recent Random Colors