Random Color Generator

#b98474 Color

Color Codes
Hex Code #b98474
RGB Code rgb(185, 132, 116)
HSL Code hsl(14, 33%, 59%)

#b98474 Color Syntax

rgb()

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

 main {
    background-color: rgb(185, 132, 116);
   }

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, 33%, 59%);
  }

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

RGB Code Hex Code Preview
rgb(185, 132, 116, 10%) #b984741a  
rgb(185, 132, 116, 20%) #b9847433  
rgb(185, 132, 116, 40%) #b984744C  
rgb(185, 132, 116, 60%) #b9847499  
rgb(185, 132, 116, 80%) #b98474CC  
rgb(185, 132, 116, 100%) #b98474FF  

Saturated and desaturated colors of #b98474

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

#b98474 Color Usage In CSS

 body {
    color: #b98474;
    }
 p {
    color: rgb(185, 132, 116);
    }
 header {
    border-bottom:1px solid #b98474;
    }
Recent Random Colors