Random Color Generator

#7b5256 Color

Color Codes
Hex Code #7b5256
RGB Code rgb(123, 82, 86)
HSL Code hsl(354, 20%, 40%)

#7b5256 Color Syntax

rgb()

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

 main {
    background-color: rgb(123, 82, 86);
   }

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(354, 20%, 40%);
  }

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

RGB Code Hex Code Preview
rgb(123, 82, 86, 10%) #7b52561a  
rgb(123, 82, 86, 20%) #7b525633  
rgb(123, 82, 86, 40%) #7b52564C  
rgb(123, 82, 86, 60%) #7b525699  
rgb(123, 82, 86, 80%) #7b5256CC  
rgb(123, 82, 86, 100%) #7b5256FF  

Saturated and desaturated colors of #7b5256

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

#7b5256 Color Usage In CSS

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