Random Color Generator

#7b3c3f Color

Color Codes
Hex Code #7b3c3f
RGB Code rgb(123, 60, 63)
HSL Code hsl(357, 34%, 36%)

#7b3c3f Color Syntax

rgb()

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

 main {
    background-color: rgb(123, 60, 63);
   }

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(357, 34%, 36%);
  }

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

RGB Code Hex Code Preview
rgb(123, 60, 63, 10%) #7b3c3f1a  
rgb(123, 60, 63, 20%) #7b3c3f33  
rgb(123, 60, 63, 40%) #7b3c3f4C  
rgb(123, 60, 63, 60%) #7b3c3f99  
rgb(123, 60, 63, 80%) #7b3c3fCC  
rgb(123, 60, 63, 100%) #7b3c3fFF  

Saturated and desaturated colors of #7b3c3f

HSL Code Preview
hsl(357, 10%, 36%)  
hsl(357, 20%, 36%)  
hsl(357, 40%, 36%)  
hsl(357, 60%, 36%)  
hsl(357, 80%, 36%)  
hsl(357, 100%, 36%)  

#7b3c3f Color Usage In CSS

 body {
    color: #7b3c3f;
    }
 p {
    color: rgb(123, 60, 63);
    }
 header {
    border-bottom:1px solid #7b3c3f;
    }
Recent Random Colors