Random Color Generator

#c0a426 Color

Color Codes
Hex Code #c0a426
RGB Code rgb(192, 164, 38)
HSL Code hsl(49, 67%, 45%)

#c0a426 Color Syntax

rgb()

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

 main {
    background-color: rgb(192, 164, 38);
   }

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(49, 67%, 45%);
  }

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

RGB Code Hex Code Preview
rgb(192, 164, 38, 10%) #c0a4261a  
rgb(192, 164, 38, 20%) #c0a42633  
rgb(192, 164, 38, 40%) #c0a4264C  
rgb(192, 164, 38, 60%) #c0a42699  
rgb(192, 164, 38, 80%) #c0a426CC  
rgb(192, 164, 38, 100%) #c0a426FF  

Saturated and desaturated colors of #c0a426

HSL Code Preview
hsl(49, 10%, 45%)  
hsl(49, 20%, 45%)  
hsl(49, 40%, 45%)  
hsl(49, 60%, 45%)  
hsl(49, 80%, 45%)  
hsl(49, 100%, 45%)  

#c0a426 Color Usage In CSS

 body {
    color: #c0a426;
    }
 p {
    color: rgb(192, 164, 38);
    }
 header {
    border-bottom:1px solid #c0a426;
    }
Recent Random Colors