Random Color Generator

#d0a549 Color

Color Codes
Hex Code #d0a549
RGB Code rgb(208, 165, 73)
HSL Code hsl(41, 59%, 55%)

#d0a549 Color Syntax

rgb()

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

 main {
    background-color: rgb(208, 165, 73);
   }

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(41, 59%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(208, 165, 73, 10%) #d0a5491a  
rgb(208, 165, 73, 20%) #d0a54933  
rgb(208, 165, 73, 40%) #d0a5494C  
rgb(208, 165, 73, 60%) #d0a54999  
rgb(208, 165, 73, 80%) #d0a549CC  
rgb(208, 165, 73, 100%) #d0a549FF  

Saturated and desaturated colors of #d0a549

HSL Code Preview
hsl(41, 10%, 55%)  
hsl(41, 20%, 55%)  
hsl(41, 40%, 55%)  
hsl(41, 60%, 55%)  
hsl(41, 80%, 55%)  
hsl(41, 100%, 55%)  

#d0a549 Color Usage In CSS

 body {
    color: #d0a549;
    }
 p {
    color: rgb(208, 165, 73);
    }
 header {
    border-bottom:1px solid #d0a549;
    }
Recent Random Colors