Random Color Generator

#d4bd57 Color

Color Codes
Hex Code #d4bd57
RGB Code rgb(212, 189, 87)
HSL Code hsl(49, 59%, 59%)

#d4bd57 Color Syntax

rgb()

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

 main {
    background-color: rgb(212, 189, 87);
   }

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(49, 59%, 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 #d4bd57

RGB Code Hex Code Preview
rgb(212, 189, 87, 10%) #d4bd571a  
rgb(212, 189, 87, 20%) #d4bd5733  
rgb(212, 189, 87, 40%) #d4bd574C  
rgb(212, 189, 87, 60%) #d4bd5799  
rgb(212, 189, 87, 80%) #d4bd57CC  
rgb(212, 189, 87, 100%) #d4bd57FF  

Saturated and desaturated colors of #d4bd57

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

#d4bd57 Color Usage In CSS

 body {
    color: #d4bd57;
    }
 p {
    color: rgb(212, 189, 87);
    }
 header {
    border-bottom:1px solid #d4bd57;
    }
Recent Random Colors