Random Color Generator

#394d49 Color

Color Codes
Hex Code #394d49
RGB Code rgb(57, 77, 73)
HSL Code hsl(168, 15%, 26%)

#394d49 Color Syntax

rgb()

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

 main {
    background-color: rgb(57, 77, 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(168, 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 #394d49

RGB Code Hex Code Preview
rgb(57, 77, 73, 10%) #394d491a  
rgb(57, 77, 73, 20%) #394d4933  
rgb(57, 77, 73, 40%) #394d494C  
rgb(57, 77, 73, 60%) #394d4999  
rgb(57, 77, 73, 80%) #394d49CC  
rgb(57, 77, 73, 100%) #394d49FF  

Saturated and desaturated colors of #394d49

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

#394d49 Color Usage In CSS

 body {
    color: #394d49;
    }
 p {
    color: rgb(57, 77, 73);
    }
 header {
    border-bottom:1px solid #394d49;
    }
Recent Random Colors