Random Color Generator

#9b7468 Color

Color Codes
Hex Code #9b7468
RGB Code rgb(155, 116, 104)
HSL Code hsl(14, 20%, 51%)

#9b7468 Color Syntax

rgb()

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

 main {
    background-color: rgb(155, 116, 104);
   }

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(14, 20%, 51%);
  }

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 #9b7468

RGB Code Hex Code Preview
rgb(155, 116, 104, 10%) #9b74681a  
rgb(155, 116, 104, 20%) #9b746833  
rgb(155, 116, 104, 40%) #9b74684C  
rgb(155, 116, 104, 60%) #9b746899  
rgb(155, 116, 104, 80%) #9b7468CC  
rgb(155, 116, 104, 100%) #9b7468FF  

Saturated and desaturated colors of #9b7468

HSL Code Preview
hsl(14, 10%, 51%)  
hsl(14, 20%, 51%)  
hsl(14, 40%, 51%)  
hsl(14, 60%, 51%)  
hsl(14, 80%, 51%)  
hsl(14, 100%, 51%)  

#9b7468 Color Usage In CSS

 body {
    color: #9b7468;
    }
 p {
    color: rgb(155, 116, 104);
    }
 header {
    border-bottom:1px solid #9b7468;
    }
Recent Random Colors