Random Color Generator

#a48684 Color

Color Codes
Hex Code #a48684
RGB Code rgb(164, 134, 132)
HSL Code hsl(4, 15%, 58%)

#a48684 Color Syntax

rgb()

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

 main {
    background-color: rgb(164, 134, 132);
   }

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(4, 15%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(164, 134, 132, 10%) #a486841a  
rgb(164, 134, 132, 20%) #a4868433  
rgb(164, 134, 132, 40%) #a486844C  
rgb(164, 134, 132, 60%) #a4868499  
rgb(164, 134, 132, 80%) #a48684CC  
rgb(164, 134, 132, 100%) #a48684FF  

Saturated and desaturated colors of #a48684

HSL Code Preview
hsl(4, 10%, 58%)  
hsl(4, 20%, 58%)  
hsl(4, 40%, 58%)  
hsl(4, 60%, 58%)  
hsl(4, 80%, 58%)  
hsl(4, 100%, 58%)  

#a48684 Color Usage In CSS

 body {
    color: #a48684;
    }
 p {
    color: rgb(164, 134, 132);
    }
 header {
    border-bottom:1px solid #a48684;
    }
Recent Random Colors