Random Color Generator

#c8875e Color

Color Codes
Hex Code #c8875e
RGB Code rgb(200, 135, 94)
HSL Code hsl(23, 49%, 58%)

#c8875e Color Syntax

rgb()

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

 main {
    background-color: rgb(200, 135, 94);
   }

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(23, 49%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(200, 135, 94, 10%) #c8875e1a  
rgb(200, 135, 94, 20%) #c8875e33  
rgb(200, 135, 94, 40%) #c8875e4C  
rgb(200, 135, 94, 60%) #c8875e99  
rgb(200, 135, 94, 80%) #c8875eCC  
rgb(200, 135, 94, 100%) #c8875eFF  

Saturated and desaturated colors of #c8875e

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

#c8875e Color Usage In CSS

 body {
    color: #c8875e;
    }
 p {
    color: rgb(200, 135, 94);
    }
 header {
    border-bottom:1px solid #c8875e;
    }
Recent Random Colors