Random Color Generator

#4e464d Color

Color Codes
Hex Code #4e464d
RGB Code rgb(78, 70, 77)
HSL Code hsl(308, 5%, 29%)

#4e464d Color Syntax

rgb()

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

 main {
    background-color: rgb(78, 70, 77);
   }

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(308, 5%, 29%);
  }

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

RGB Code Hex Code Preview
rgb(78, 70, 77, 10%) #4e464d1a  
rgb(78, 70, 77, 20%) #4e464d33  
rgb(78, 70, 77, 40%) #4e464d4C  
rgb(78, 70, 77, 60%) #4e464d99  
rgb(78, 70, 77, 80%) #4e464dCC  
rgb(78, 70, 77, 100%) #4e464dFF  

Saturated and desaturated colors of #4e464d

HSL Code Preview
hsl(308, 10%, 29%)  
hsl(308, 20%, 29%)  
hsl(308, 40%, 29%)  
hsl(308, 60%, 29%)  
hsl(308, 80%, 29%)  
hsl(308, 100%, 29%)  

#4e464d Color Usage In CSS

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