Random Color Generator

#c7702b Color

Color Codes
Hex Code #c7702b
RGB Code rgb(199, 112, 43)
HSL Code hsl(27, 64%, 47%)

#c7702b Color Syntax

rgb()

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

 main {
    background-color: rgb(199, 112, 43);
   }

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(27, 64%, 47%);
  }

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

RGB Code Hex Code Preview
rgb(199, 112, 43, 10%) #c7702b1a  
rgb(199, 112, 43, 20%) #c7702b33  
rgb(199, 112, 43, 40%) #c7702b4C  
rgb(199, 112, 43, 60%) #c7702b99  
rgb(199, 112, 43, 80%) #c7702bCC  
rgb(199, 112, 43, 100%) #c7702bFF  

Saturated and desaturated colors of #c7702b

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

#c7702b Color Usage In CSS

 body {
    color: #c7702b;
    }
 p {
    color: rgb(199, 112, 43);
    }
 header {
    border-bottom:1px solid #c7702b;
    }
Recent Random Colors