Random Color Generator

#d5a256 Color

Color Codes
Hex Code #d5a256
RGB Code rgb(213, 162, 86)
HSL Code hsl(36, 60%, 59%)

#d5a256 Color Syntax

rgb()

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

 main {
    background-color: rgb(213, 162, 86);
   }

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(36, 60%, 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 #d5a256

RGB Code Hex Code Preview
rgb(213, 162, 86, 10%) #d5a2561a  
rgb(213, 162, 86, 20%) #d5a25633  
rgb(213, 162, 86, 40%) #d5a2564C  
rgb(213, 162, 86, 60%) #d5a25699  
rgb(213, 162, 86, 80%) #d5a256CC  
rgb(213, 162, 86, 100%) #d5a256FF  

Saturated and desaturated colors of #d5a256

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

#d5a256 Color Usage In CSS

 body {
    color: #d5a256;
    }
 p {
    color: rgb(213, 162, 86);
    }
 header {
    border-bottom:1px solid #d5a256;
    }
Recent Random Colors