Random Color Generator

#c16826 Color

Color Codes
Hex Code #c16826
RGB Code rgb(193, 104, 38)
HSL Code hsl(26, 67%, 45%)

#c16826 Color Syntax

rgb()

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

 main {
    background-color: rgb(193, 104, 38);
   }

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

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

RGB Code Hex Code Preview
rgb(193, 104, 38, 10%) #c168261a  
rgb(193, 104, 38, 20%) #c1682633  
rgb(193, 104, 38, 40%) #c168264C  
rgb(193, 104, 38, 60%) #c1682699  
rgb(193, 104, 38, 80%) #c16826CC  
rgb(193, 104, 38, 100%) #c16826FF  

Saturated and desaturated colors of #c16826

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

#c16826 Color Usage In CSS

 body {
    color: #c16826;
    }
 p {
    color: rgb(193, 104, 38);
    }
 header {
    border-bottom:1px solid #c16826;
    }
Recent Random Colors