Random Color Generator

#94895c Color

Color Codes
Hex Code #94895c
RGB Code rgb(148, 137, 92)
HSL Code hsl(48, 23%, 47%)

#94895c Color Syntax

rgb()

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

 main {
    background-color: rgb(148, 137, 92);
   }

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(48, 23%, 47%);
  }

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 #94895c

RGB Code Hex Code Preview
rgb(148, 137, 92, 10%) #94895c1a  
rgb(148, 137, 92, 20%) #94895c33  
rgb(148, 137, 92, 40%) #94895c4C  
rgb(148, 137, 92, 60%) #94895c99  
rgb(148, 137, 92, 80%) #94895cCC  
rgb(148, 137, 92, 100%) #94895cFF  

Saturated and desaturated colors of #94895c

HSL Code Preview
hsl(48, 10%, 47%)  
hsl(48, 20%, 47%)  
hsl(48, 40%, 47%)  
hsl(48, 60%, 47%)  
hsl(48, 80%, 47%)  
hsl(48, 100%, 47%)  

#94895c Color Usage In CSS

 body {
    color: #94895c;
    }
 p {
    color: rgb(148, 137, 92);
    }
 header {
    border-bottom:1px solid #94895c;
    }
Recent Random Colors