Random Color Generator

#757f50 Color

Color Codes
Hex Code #757f50
RGB Code rgb(117, 127, 80)
HSL Code hsl(73, 23%, 41%)

#757f50 Color Syntax

rgb()

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

 main {
    background-color: rgb(117, 127, 80);
   }

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(73, 23%, 41%);
  }

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

RGB Code Hex Code Preview
rgb(117, 127, 80, 10%) #757f501a  
rgb(117, 127, 80, 20%) #757f5033  
rgb(117, 127, 80, 40%) #757f504C  
rgb(117, 127, 80, 60%) #757f5099  
rgb(117, 127, 80, 80%) #757f50CC  
rgb(117, 127, 80, 100%) #757f50FF  

Saturated and desaturated colors of #757f50

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

#757f50 Color Usage In CSS

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