Random Color Generator

#b7a743 Color

Color Codes
Hex Code #b7a743
RGB Code rgb(183, 167, 67)
HSL Code hsl(52, 46%, 49%)

#b7a743 Color Syntax

rgb()

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

 main {
    background-color: rgb(183, 167, 67);
   }

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(52, 46%, 49%);
  }

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

RGB Code Hex Code Preview
rgb(183, 167, 67, 10%) #b7a7431a  
rgb(183, 167, 67, 20%) #b7a74333  
rgb(183, 167, 67, 40%) #b7a7434C  
rgb(183, 167, 67, 60%) #b7a74399  
rgb(183, 167, 67, 80%) #b7a743CC  
rgb(183, 167, 67, 100%) #b7a743FF  

Saturated and desaturated colors of #b7a743

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

#b7a743 Color Usage In CSS

 body {
    color: #b7a743;
    }
 p {
    color: rgb(183, 167, 67);
    }
 header {
    border-bottom:1px solid #b7a743;
    }
Recent Random Colors