Random Color Generator

#c97b4f Color

Color Codes
Hex Code #c97b4f
RGB Code rgb(201, 123, 79)
HSL Code hsl(22, 53%, 55%)

#c97b4f Color Syntax

rgb()

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

 main {
    background-color: rgb(201, 123, 79);
   }

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(22, 53%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(201, 123, 79, 10%) #c97b4f1a  
rgb(201, 123, 79, 20%) #c97b4f33  
rgb(201, 123, 79, 40%) #c97b4f4C  
rgb(201, 123, 79, 60%) #c97b4f99  
rgb(201, 123, 79, 80%) #c97b4fCC  
rgb(201, 123, 79, 100%) #c97b4fFF  

Saturated and desaturated colors of #c97b4f

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

#c97b4f Color Usage In CSS

 body {
    color: #c97b4f;
    }
 p {
    color: rgb(201, 123, 79);
    }
 header {
    border-bottom:1px solid #c97b4f;
    }
Recent Random Colors