Random Color Generator

#b48395 Color

Color Codes
Hex Code #b48395
RGB Code rgb(180, 131, 149)
HSL Code hsl(338, 25%, 61%)

#b48395 Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 131, 149);
   }

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(338, 25%, 61%);
  }

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

RGB Code Hex Code Preview
rgb(180, 131, 149, 10%) #b483951a  
rgb(180, 131, 149, 20%) #b4839533  
rgb(180, 131, 149, 40%) #b483954C  
rgb(180, 131, 149, 60%) #b4839599  
rgb(180, 131, 149, 80%) #b48395CC  
rgb(180, 131, 149, 100%) #b48395FF  

Saturated and desaturated colors of #b48395

HSL Code Preview
hsl(338, 10%, 61%)  
hsl(338, 20%, 61%)  
hsl(338, 40%, 61%)  
hsl(338, 60%, 61%)  
hsl(338, 80%, 61%)  
hsl(338, 100%, 61%)  

#b48395 Color Usage In CSS

 body {
    color: #b48395;
    }
 p {
    color: rgb(180, 131, 149);
    }
 header {
    border-bottom:1px solid #b48395;
    }
Recent Random Colors