Random Color Generator

#bb7a21 Color

Color Codes
Hex Code #bb7a21
RGB Code rgb(187, 122, 33)
HSL Code hsl(35, 70%, 43%)

#bb7a21 Color Syntax

rgb()

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

 main {
    background-color: rgb(187, 122, 33);
   }

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(35, 70%, 43%);
  }

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

RGB Code Hex Code Preview
rgb(187, 122, 33, 10%) #bb7a211a  
rgb(187, 122, 33, 20%) #bb7a2133  
rgb(187, 122, 33, 40%) #bb7a214C  
rgb(187, 122, 33, 60%) #bb7a2199  
rgb(187, 122, 33, 80%) #bb7a21CC  
rgb(187, 122, 33, 100%) #bb7a21FF  

Saturated and desaturated colors of #bb7a21

HSL Code Preview
hsl(35, 10%, 43%)  
hsl(35, 20%, 43%)  
hsl(35, 40%, 43%)  
hsl(35, 60%, 43%)  
hsl(35, 80%, 43%)  
hsl(35, 100%, 43%)  

#bb7a21 Color Usage In CSS

 body {
    color: #bb7a21;
    }
 p {
    color: rgb(187, 122, 33);
    }
 header {
    border-bottom:1px solid #bb7a21;
    }
Recent Random Colors