Random Color Generator

#787825 Color

Color Codes
Hex Code #787825
RGB Code rgb(120, 120, 37)
HSL Code hsl(60, 53%, 31%)

#787825 Color Syntax

rgb()

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

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

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(60, 53%, 31%);
  }

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

RGB Code Hex Code Preview
rgb(120, 120, 37, 10%) #7878251a  
rgb(120, 120, 37, 20%) #78782533  
rgb(120, 120, 37, 40%) #7878254C  
rgb(120, 120, 37, 60%) #78782599  
rgb(120, 120, 37, 80%) #787825CC  
rgb(120, 120, 37, 100%) #787825FF  

Saturated and desaturated colors of #787825

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

#787825 Color Usage In CSS

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