Random Color Generator

#4c383f Color

Color Codes
Hex Code #4c383f
RGB Code rgb(76, 56, 63)
HSL Code hsl(339, 15%, 26%)

#4c383f Color Syntax

rgb()

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

 main {
    background-color: rgb(76, 56, 63);
   }

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(339, 15%, 26%);
  }

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

RGB Code Hex Code Preview
rgb(76, 56, 63, 10%) #4c383f1a  
rgb(76, 56, 63, 20%) #4c383f33  
rgb(76, 56, 63, 40%) #4c383f4C  
rgb(76, 56, 63, 60%) #4c383f99  
rgb(76, 56, 63, 80%) #4c383fCC  
rgb(76, 56, 63, 100%) #4c383fFF  

Saturated and desaturated colors of #4c383f

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

#4c383f Color Usage In CSS

 body {
    color: #4c383f;
    }
 p {
    color: rgb(76, 56, 63);
    }
 header {
    border-bottom:1px solid #4c383f;
    }
Recent Random Colors