Random Color Generator

#d4b650 Color

Color Codes
Hex Code #d4b650
RGB Code rgb(212, 182, 80)
HSL Code hsl(46, 61%, 57%)

#d4b650 Color Syntax

rgb()

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

 main {
    background-color: rgb(212, 182, 80);
   }

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(46, 61%, 57%);
  }

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

RGB Code Hex Code Preview
rgb(212, 182, 80, 10%) #d4b6501a  
rgb(212, 182, 80, 20%) #d4b65033  
rgb(212, 182, 80, 40%) #d4b6504C  
rgb(212, 182, 80, 60%) #d4b65099  
rgb(212, 182, 80, 80%) #d4b650CC  
rgb(212, 182, 80, 100%) #d4b650FF  

Saturated and desaturated colors of #d4b650

HSL Code Preview
hsl(46, 10%, 57%)  
hsl(46, 20%, 57%)  
hsl(46, 40%, 57%)  
hsl(46, 60%, 57%)  
hsl(46, 80%, 57%)  
hsl(46, 100%, 57%)  

#d4b650 Color Usage In CSS

 body {
    color: #d4b650;
    }
 p {
    color: rgb(212, 182, 80);
    }
 header {
    border-bottom:1px solid #d4b650;
    }
Recent Random Colors