Random Color Generator

#4d4231 Color

Color Codes
Hex Code #4d4231
RGB Code rgb(77, 66, 49)
HSL Code hsl(36, 22%, 25%)

#4d4231 Color Syntax

rgb()

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

 main {
    background-color: rgb(77, 66, 49);
   }

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(36, 22%, 25%);
  }

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

RGB Code Hex Code Preview
rgb(77, 66, 49, 10%) #4d42311a  
rgb(77, 66, 49, 20%) #4d423133  
rgb(77, 66, 49, 40%) #4d42314C  
rgb(77, 66, 49, 60%) #4d423199  
rgb(77, 66, 49, 80%) #4d4231CC  
rgb(77, 66, 49, 100%) #4d4231FF  

Saturated and desaturated colors of #4d4231

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

#4d4231 Color Usage In CSS

 body {
    color: #4d4231;
    }
 p {
    color: rgb(77, 66, 49);
    }
 header {
    border-bottom:1px solid #4d4231;
    }
Recent Random Colors