Random Color Generator

#766628 Color

Color Codes
Hex Code #766628
RGB Code rgb(118, 102, 40)
HSL Code hsl(48, 49%, 31%)

#766628 Color Syntax

rgb()

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

 main {
    background-color: rgb(118, 102, 40);
   }

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(48, 49%, 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 #766628

RGB Code Hex Code Preview
rgb(118, 102, 40, 10%) #7666281a  
rgb(118, 102, 40, 20%) #76662833  
rgb(118, 102, 40, 40%) #7666284C  
rgb(118, 102, 40, 60%) #76662899  
rgb(118, 102, 40, 80%) #766628CC  
rgb(118, 102, 40, 100%) #766628FF  

Saturated and desaturated colors of #766628

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

#766628 Color Usage In CSS

 body {
    color: #766628;
    }
 p {
    color: rgb(118, 102, 40);
    }
 header {
    border-bottom:1px solid #766628;
    }
Recent Random Colors