Random Color Generator

#b38256 Color

Color Codes
Hex Code #b38256
RGB Code rgb(179, 130, 86)
HSL Code hsl(28, 38%, 52%)

#b38256 Color Syntax

rgb()

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

 main {
    background-color: rgb(179, 130, 86);
   }

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(28, 38%, 52%);
  }

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

RGB Code Hex Code Preview
rgb(179, 130, 86, 10%) #b382561a  
rgb(179, 130, 86, 20%) #b3825633  
rgb(179, 130, 86, 40%) #b382564C  
rgb(179, 130, 86, 60%) #b3825699  
rgb(179, 130, 86, 80%) #b38256CC  
rgb(179, 130, 86, 100%) #b38256FF  

Saturated and desaturated colors of #b38256

HSL Code Preview
hsl(28, 10%, 52%)  
hsl(28, 20%, 52%)  
hsl(28, 40%, 52%)  
hsl(28, 60%, 52%)  
hsl(28, 80%, 52%)  
hsl(28, 100%, 52%)  

#b38256 Color Usage In CSS

 body {
    color: #b38256;
    }
 p {
    color: rgb(179, 130, 86);
    }
 header {
    border-bottom:1px solid #b38256;
    }
Recent Random Colors