Random Color Generator

#6e4d12 Color

Color Codes
Hex Code #6e4d12
RGB Code rgb(110, 77, 18)
HSL Code hsl(38, 72%, 25%)

#6e4d12 Color Syntax

rgb()

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

 main {
    background-color: rgb(110, 77, 18);
   }

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(38, 72%, 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 #6e4d12

RGB Code Hex Code Preview
rgb(110, 77, 18, 10%) #6e4d121a  
rgb(110, 77, 18, 20%) #6e4d1233  
rgb(110, 77, 18, 40%) #6e4d124C  
rgb(110, 77, 18, 60%) #6e4d1299  
rgb(110, 77, 18, 80%) #6e4d12CC  
rgb(110, 77, 18, 100%) #6e4d12FF  

Saturated and desaturated colors of #6e4d12

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

#6e4d12 Color Usage In CSS

 body {
    color: #6e4d12;
    }
 p {
    color: rgb(110, 77, 18);
    }
 header {
    border-bottom:1px solid #6e4d12;
    }
Recent Random Colors