Random Color Generator

#d1bb3d Color

Color Codes
Hex Code #d1bb3d
RGB Code rgb(209, 187, 61)
HSL Code hsl(51, 62%, 53%)

#d1bb3d Color Syntax

rgb()

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

 main {
    background-color: rgb(209, 187, 61);
   }

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(51, 62%, 53%);
  }

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

RGB Code Hex Code Preview
rgb(209, 187, 61, 10%) #d1bb3d1a  
rgb(209, 187, 61, 20%) #d1bb3d33  
rgb(209, 187, 61, 40%) #d1bb3d4C  
rgb(209, 187, 61, 60%) #d1bb3d99  
rgb(209, 187, 61, 80%) #d1bb3dCC  
rgb(209, 187, 61, 100%) #d1bb3dFF  

Saturated and desaturated colors of #d1bb3d

HSL Code Preview
hsl(51, 10%, 53%)  
hsl(51, 20%, 53%)  
hsl(51, 40%, 53%)  
hsl(51, 60%, 53%)  
hsl(51, 80%, 53%)  
hsl(51, 100%, 53%)  

#d1bb3d Color Usage In CSS

 body {
    color: #d1bb3d;
    }
 p {
    color: rgb(209, 187, 61);
    }
 header {
    border-bottom:1px solid #d1bb3d;
    }
Recent Random Colors