Random Color Generator

#757a64 Color

Color Codes
Hex Code #757a64
RGB Code rgb(117, 122, 100)
HSL Code hsl(74, 10%, 44%)

#757a64 Color Syntax

rgb()

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

 main {
    background-color: rgb(117, 122, 100);
   }

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(74, 10%, 44%);
  }

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 #757a64

RGB Code Hex Code Preview
rgb(117, 122, 100, 10%) #757a641a  
rgb(117, 122, 100, 20%) #757a6433  
rgb(117, 122, 100, 40%) #757a644C  
rgb(117, 122, 100, 60%) #757a6499  
rgb(117, 122, 100, 80%) #757a64CC  
rgb(117, 122, 100, 100%) #757a64FF  

Saturated and desaturated colors of #757a64

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

#757a64 Color Usage In CSS

 body {
    color: #757a64;
    }
 p {
    color: rgb(117, 122, 100);
    }
 header {
    border-bottom:1px solid #757a64;
    }
Recent Random Colors