Random Color Generator

#a4a718 Color

Color Codes
Hex Code #a4a718
RGB Code rgb(164, 167, 24)
HSL Code hsl(61, 75%, 37%)

#a4a718 Color Syntax

rgb()

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

 main {
    background-color: rgb(164, 167, 24);
   }

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(61, 75%, 37%);
  }

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

RGB Code Hex Code Preview
rgb(164, 167, 24, 10%) #a4a7181a  
rgb(164, 167, 24, 20%) #a4a71833  
rgb(164, 167, 24, 40%) #a4a7184C  
rgb(164, 167, 24, 60%) #a4a71899  
rgb(164, 167, 24, 80%) #a4a718CC  
rgb(164, 167, 24, 100%) #a4a718FF  

Saturated and desaturated colors of #a4a718

HSL Code Preview
hsl(61, 10%, 37%)  
hsl(61, 20%, 37%)  
hsl(61, 40%, 37%)  
hsl(61, 60%, 37%)  
hsl(61, 80%, 37%)  
hsl(61, 100%, 37%)  

#a4a718 Color Usage In CSS

 body {
    color: #a4a718;
    }
 p {
    color: rgb(164, 167, 24);
    }
 header {
    border-bottom:1px solid #a4a718;
    }
Recent Random Colors