Random Color Generator

#c37436 Color

Color Codes
Hex Code #c37436
RGB Code rgb(195, 116, 54)
HSL Code hsl(26, 57%, 49%)

#c37436 Color Syntax

rgb()

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

 main {
    background-color: rgb(195, 116, 54);
   }

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(26, 57%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(195, 116, 54, 10%) #c374361a  
rgb(195, 116, 54, 20%) #c3743633  
rgb(195, 116, 54, 40%) #c374364C  
rgb(195, 116, 54, 60%) #c3743699  
rgb(195, 116, 54, 80%) #c37436CC  
rgb(195, 116, 54, 100%) #c37436FF  

Saturated and desaturated colors of #c37436

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

#c37436 Color Usage In CSS

 body {
    color: #c37436;
    }
 p {
    color: rgb(195, 116, 54);
    }
 header {
    border-bottom:1px solid #c37436;
    }
Recent Random Colors