Random Color Generator

#4b7849 Color

Color Codes
Hex Code #4b7849
RGB Code rgb(75, 120, 73)
HSL Code hsl(117, 24%, 38%)

#4b7849 Color Syntax

rgb()

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

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

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(117, 24%, 38%);
  }

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 #4b7849

RGB Code Hex Code Preview
rgb(75, 120, 73, 10%) #4b78491a  
rgb(75, 120, 73, 20%) #4b784933  
rgb(75, 120, 73, 40%) #4b78494C  
rgb(75, 120, 73, 60%) #4b784999  
rgb(75, 120, 73, 80%) #4b7849CC  
rgb(75, 120, 73, 100%) #4b7849FF  

Saturated and desaturated colors of #4b7849

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

#4b7849 Color Usage In CSS

 body {
    color: #4b7849;
    }
 p {
    color: rgb(75, 120, 73);
    }
 header {
    border-bottom:1px solid #4b7849;
    }
Recent Random Colors