Random Color Generator

#947246 Color

Color Codes
Hex Code #947246
RGB Code rgb(148, 114, 70)
HSL Code hsl(34, 36%, 43%)

#947246 Color Syntax

rgb()

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

 main {
    background-color: rgb(148, 114, 70);
   }

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(34, 36%, 43%);
  }

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 #947246

RGB Code Hex Code Preview
rgb(148, 114, 70, 10%) #9472461a  
rgb(148, 114, 70, 20%) #94724633  
rgb(148, 114, 70, 40%) #9472464C  
rgb(148, 114, 70, 60%) #94724699  
rgb(148, 114, 70, 80%) #947246CC  
rgb(148, 114, 70, 100%) #947246FF  

Saturated and desaturated colors of #947246

HSL Code Preview
hsl(34, 10%, 43%)  
hsl(34, 20%, 43%)  
hsl(34, 40%, 43%)  
hsl(34, 60%, 43%)  
hsl(34, 80%, 43%)  
hsl(34, 100%, 43%)  

#947246 Color Usage In CSS

 body {
    color: #947246;
    }
 p {
    color: rgb(148, 114, 70);
    }
 header {
    border-bottom:1px solid #947246;
    }
Recent Random Colors