Random Color Generator

#782344 Color

Color Codes
Hex Code #782344
RGB Code rgb(120, 35, 68)
HSL Code hsl(337, 55%, 30%)

#782344 Color Syntax

rgb()

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

 main {
    background-color: rgb(120, 35, 68);
   }

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(337, 55%, 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 #782344

RGB Code Hex Code Preview
rgb(120, 35, 68, 10%) #7823441a  
rgb(120, 35, 68, 20%) #78234433  
rgb(120, 35, 68, 40%) #7823444C  
rgb(120, 35, 68, 60%) #78234499  
rgb(120, 35, 68, 80%) #782344CC  
rgb(120, 35, 68, 100%) #782344FF  

Saturated and desaturated colors of #782344

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

#782344 Color Usage In CSS

 body {
    color: #782344;
    }
 p {
    color: rgb(120, 35, 68);
    }
 header {
    border-bottom:1px solid #782344;
    }
Recent Random Colors