Random Color Generator

#78212e Color

Color Codes
Hex Code #78212e
RGB Code rgb(120, 33, 46)
HSL Code hsl(351, 57%, 30%)

#78212e Color Syntax

rgb()

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

 main {
    background-color: rgb(120, 33, 46);
   }

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(351, 57%, 30%);
  }

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 #78212e

RGB Code Hex Code Preview
rgb(120, 33, 46, 10%) #78212e1a  
rgb(120, 33, 46, 20%) #78212e33  
rgb(120, 33, 46, 40%) #78212e4C  
rgb(120, 33, 46, 60%) #78212e99  
rgb(120, 33, 46, 80%) #78212eCC  
rgb(120, 33, 46, 100%) #78212eFF  

Saturated and desaturated colors of #78212e

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

#78212e Color Usage In CSS

 body {
    color: #78212e;
    }
 p {
    color: rgb(120, 33, 46);
    }
 header {
    border-bottom:1px solid #78212e;
    }
Recent Random Colors