Random Color Generator

#7c545d Color

Color Codes
Hex Code #7c545d
RGB Code rgb(124, 84, 93)
HSL Code hsl(347, 19%, 41%)

#7c545d Color Syntax

rgb()

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

 main {
    background-color: rgb(124, 84, 93);
   }

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(347, 19%, 41%);
  }

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

RGB Code Hex Code Preview
rgb(124, 84, 93, 10%) #7c545d1a  
rgb(124, 84, 93, 20%) #7c545d33  
rgb(124, 84, 93, 40%) #7c545d4C  
rgb(124, 84, 93, 60%) #7c545d99  
rgb(124, 84, 93, 80%) #7c545dCC  
rgb(124, 84, 93, 100%) #7c545dFF  

Saturated and desaturated colors of #7c545d

HSL Code Preview
hsl(347, 10%, 41%)  
hsl(347, 20%, 41%)  
hsl(347, 40%, 41%)  
hsl(347, 60%, 41%)  
hsl(347, 80%, 41%)  
hsl(347, 100%, 41%)  

#7c545d Color Usage In CSS

 body {
    color: #7c545d;
    }
 p {
    color: rgb(124, 84, 93);
    }
 header {
    border-bottom:1px solid #7c545d;
    }
Recent Random Colors