Random Color Generator

#ca9f16 Color

Color Codes
Hex Code #ca9f16
RGB Code rgb(202, 159, 22)
HSL Code hsl(46, 80%, 44%)

#ca9f16 Color Syntax

rgb()

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

 main {
    background-color: rgb(202, 159, 22);
   }

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(46, 80%, 44%);
  }

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

RGB Code Hex Code Preview
rgb(202, 159, 22, 10%) #ca9f161a  
rgb(202, 159, 22, 20%) #ca9f1633  
rgb(202, 159, 22, 40%) #ca9f164C  
rgb(202, 159, 22, 60%) #ca9f1699  
rgb(202, 159, 22, 80%) #ca9f16CC  
rgb(202, 159, 22, 100%) #ca9f16FF  

Saturated and desaturated colors of #ca9f16

HSL Code Preview
hsl(46, 10%, 44%)  
hsl(46, 20%, 44%)  
hsl(46, 40%, 44%)  
hsl(46, 60%, 44%)  
hsl(46, 80%, 44%)  
hsl(46, 100%, 44%)  

#ca9f16 Color Usage In CSS

 body {
    color: #ca9f16;
    }
 p {
    color: rgb(202, 159, 22);
    }
 header {
    border-bottom:1px solid #ca9f16;
    }
Recent Random Colors