Random Color Generator

#7b2a17 Color

Color Codes
Hex Code #7b2a17
RGB Code rgb(123, 42, 23)
HSL Code hsl(11, 68%, 29%)

#7b2a17 Color Syntax

rgb()

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

 main {
    background-color: rgb(123, 42, 23);
   }

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(11, 68%, 29%);
  }

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

RGB Code Hex Code Preview
rgb(123, 42, 23, 10%) #7b2a171a  
rgb(123, 42, 23, 20%) #7b2a1733  
rgb(123, 42, 23, 40%) #7b2a174C  
rgb(123, 42, 23, 60%) #7b2a1799  
rgb(123, 42, 23, 80%) #7b2a17CC  
rgb(123, 42, 23, 100%) #7b2a17FF  

Saturated and desaturated colors of #7b2a17

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

#7b2a17 Color Usage In CSS

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