Random Color Generator

#864b49 Color

Color Codes
Hex Code #864b49
RGB Code rgb(134, 75, 73)
HSL Code hsl(2, 29%, 41%)

#864b49 Color Syntax

rgb()

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

 main {
    background-color: rgb(134, 75, 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(2, 29%, 41%);
  }

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 #864b49

RGB Code Hex Code Preview
rgb(134, 75, 73, 10%) #864b491a  
rgb(134, 75, 73, 20%) #864b4933  
rgb(134, 75, 73, 40%) #864b494C  
rgb(134, 75, 73, 60%) #864b4999  
rgb(134, 75, 73, 80%) #864b49CC  
rgb(134, 75, 73, 100%) #864b49FF  

Saturated and desaturated colors of #864b49

HSL Code Preview
hsl(2, 10%, 41%)  
hsl(2, 20%, 41%)  
hsl(2, 40%, 41%)  
hsl(2, 60%, 41%)  
hsl(2, 80%, 41%)  
hsl(2, 100%, 41%)  

#864b49 Color Usage In CSS

 body {
    color: #864b49;
    }
 p {
    color: rgb(134, 75, 73);
    }
 header {
    border-bottom:1px solid #864b49;
    }
Recent Random Colors