Random Color Generator

#74715a Color

Color Codes
Hex Code #74715a
RGB Code rgb(116, 113, 90)
HSL Code hsl(53, 13%, 40%)

#74715a Color Syntax

rgb()

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

 main {
    background-color: rgb(116, 113, 90);
   }

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(53, 13%, 40%);
  }

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 #74715a

RGB Code Hex Code Preview
rgb(116, 113, 90, 10%) #74715a1a  
rgb(116, 113, 90, 20%) #74715a33  
rgb(116, 113, 90, 40%) #74715a4C  
rgb(116, 113, 90, 60%) #74715a99  
rgb(116, 113, 90, 80%) #74715aCC  
rgb(116, 113, 90, 100%) #74715aFF  

Saturated and desaturated colors of #74715a

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

#74715a Color Usage In CSS

 body {
    color: #74715a;
    }
 p {
    color: rgb(116, 113, 90);
    }
 header {
    border-bottom:1px solid #74715a;
    }
Recent Random Colors