Random Color Generator

#944f5e Color

Color Codes
Hex Code #944f5e
RGB Code rgb(148, 79, 94)
HSL Code hsl(347, 30%, 45%)

#944f5e Color Syntax

rgb()

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

 main {
    background-color: rgb(148, 79, 94);
   }

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(347, 30%, 45%);
  }

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 #944f5e

RGB Code Hex Code Preview
rgb(148, 79, 94, 10%) #944f5e1a  
rgb(148, 79, 94, 20%) #944f5e33  
rgb(148, 79, 94, 40%) #944f5e4C  
rgb(148, 79, 94, 60%) #944f5e99  
rgb(148, 79, 94, 80%) #944f5eCC  
rgb(148, 79, 94, 100%) #944f5eFF  

Saturated and desaturated colors of #944f5e

HSL Code Preview
hsl(347, 10%, 45%)  
hsl(347, 20%, 45%)  
hsl(347, 40%, 45%)  
hsl(347, 60%, 45%)  
hsl(347, 80%, 45%)  
hsl(347, 100%, 45%)  

#944f5e Color Usage In CSS

 body {
    color: #944f5e;
    }
 p {
    color: rgb(148, 79, 94);
    }
 header {
    border-bottom:1px solid #944f5e;
    }
Recent Random Colors