Random Color Generator

#6a6114 Color

Color Codes
Hex Code #6a6114
RGB Code rgb(106, 97, 20)
HSL Code hsl(54, 68%, 25%)

#6a6114 Color Syntax

rgb()

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

 main {
    background-color: rgb(106, 97, 20);
   }

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(54, 68%, 25%);
  }

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 #6a6114

RGB Code Hex Code Preview
rgb(106, 97, 20, 10%) #6a61141a  
rgb(106, 97, 20, 20%) #6a611433  
rgb(106, 97, 20, 40%) #6a61144C  
rgb(106, 97, 20, 60%) #6a611499  
rgb(106, 97, 20, 80%) #6a6114CC  
rgb(106, 97, 20, 100%) #6a6114FF  

Saturated and desaturated colors of #6a6114

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

#6a6114 Color Usage In CSS

 body {
    color: #6a6114;
    }
 p {
    color: rgb(106, 97, 20);
    }
 header {
    border-bottom:1px solid #6a6114;
    }
Recent Random Colors