Random Color Generator

#d9b370 Color

Color Codes
Hex Code #d9b370
RGB Code rgb(217, 179, 112)
HSL Code hsl(38, 58%, 65%)

#d9b370 Color Syntax

rgb()

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

 main {
    background-color: rgb(217, 179, 112);
   }

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(38, 58%, 65%);
  }

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

RGB Code Hex Code Preview
rgb(217, 179, 112, 10%) #d9b3701a  
rgb(217, 179, 112, 20%) #d9b37033  
rgb(217, 179, 112, 40%) #d9b3704C  
rgb(217, 179, 112, 60%) #d9b37099  
rgb(217, 179, 112, 80%) #d9b370CC  
rgb(217, 179, 112, 100%) #d9b370FF  

Saturated and desaturated colors of #d9b370

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

#d9b370 Color Usage In CSS

 body {
    color: #d9b370;
    }
 p {
    color: rgb(217, 179, 112);
    }
 header {
    border-bottom:1px solid #d9b370;
    }
Recent Random Colors