Random Color Generator

#7b2e38 Color

Color Codes
Hex Code #7b2e38
RGB Code rgb(123, 46, 56)
HSL Code hsl(352, 46%, 33%)

#7b2e38 Color Syntax

rgb()

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

 main {
    background-color: rgb(123, 46, 56);
   }

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(352, 46%, 33%);
  }

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

RGB Code Hex Code Preview
rgb(123, 46, 56, 10%) #7b2e381a  
rgb(123, 46, 56, 20%) #7b2e3833  
rgb(123, 46, 56, 40%) #7b2e384C  
rgb(123, 46, 56, 60%) #7b2e3899  
rgb(123, 46, 56, 80%) #7b2e38CC  
rgb(123, 46, 56, 100%) #7b2e38FF  

Saturated and desaturated colors of #7b2e38

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

#7b2e38 Color Usage In CSS

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