Random Color Generator

#aea264 Color

Color Codes
Hex Code #aea264
RGB Code rgb(174, 162, 100)
HSL Code hsl(50, 31%, 54%)

#aea264 Color Syntax

rgb()

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

 main {
    background-color: rgb(174, 162, 100);
   }

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(50, 31%, 54%);
  }

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

RGB Code Hex Code Preview
rgb(174, 162, 100, 10%) #aea2641a  
rgb(174, 162, 100, 20%) #aea26433  
rgb(174, 162, 100, 40%) #aea2644C  
rgb(174, 162, 100, 60%) #aea26499  
rgb(174, 162, 100, 80%) #aea264CC  
rgb(174, 162, 100, 100%) #aea264FF  

Saturated and desaturated colors of #aea264

HSL Code Preview
hsl(50, 10%, 54%)  
hsl(50, 20%, 54%)  
hsl(50, 40%, 54%)  
hsl(50, 60%, 54%)  
hsl(50, 80%, 54%)  
hsl(50, 100%, 54%)  

#aea264 Color Usage In CSS

 body {
    color: #aea264;
    }
 p {
    color: rgb(174, 162, 100);
    }
 header {
    border-bottom:1px solid #aea264;
    }
Recent Random Colors