Random Color Generator

#782b38 Color

Color Codes
Hex Code #782b38
RGB Code rgb(120, 43, 56)
HSL Code hsl(350, 47%, 32%)

#782b38 Color Syntax

rgb()

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

 main {
    background-color: rgb(120, 43, 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(350, 47%, 32%);
  }

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 #782b38

RGB Code Hex Code Preview
rgb(120, 43, 56, 10%) #782b381a  
rgb(120, 43, 56, 20%) #782b3833  
rgb(120, 43, 56, 40%) #782b384C  
rgb(120, 43, 56, 60%) #782b3899  
rgb(120, 43, 56, 80%) #782b38CC  
rgb(120, 43, 56, 100%) #782b38FF  

Saturated and desaturated colors of #782b38

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

#782b38 Color Usage In CSS

 body {
    color: #782b38;
    }
 p {
    color: rgb(120, 43, 56);
    }
 header {
    border-bottom:1px solid #782b38;
    }
Recent Random Colors