Random Color Generator

#b38c10 Color

Color Codes
Hex Code #b38c10
RGB Code rgb(179, 140, 16)
HSL Code hsl(46, 84%, 38%)

#b38c10 Color Syntax

rgb()

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

 main {
    background-color: rgb(179, 140, 16);
   }

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(46, 84%, 38%);
  }

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

RGB Code Hex Code Preview
rgb(179, 140, 16, 10%) #b38c101a  
rgb(179, 140, 16, 20%) #b38c1033  
rgb(179, 140, 16, 40%) #b38c104C  
rgb(179, 140, 16, 60%) #b38c1099  
rgb(179, 140, 16, 80%) #b38c10CC  
rgb(179, 140, 16, 100%) #b38c10FF  

Saturated and desaturated colors of #b38c10

HSL Code Preview
hsl(46, 10%, 38%)  
hsl(46, 20%, 38%)  
hsl(46, 40%, 38%)  
hsl(46, 60%, 38%)  
hsl(46, 80%, 38%)  
hsl(46, 100%, 38%)  

#b38c10 Color Usage In CSS

 body {
    color: #b38c10;
    }
 p {
    color: rgb(179, 140, 16);
    }
 header {
    border-bottom:1px solid #b38c10;
    }
Recent Random Colors