Random Color Generator

#5c3814 Color

Color Codes
Hex Code #5c3814
RGB Code rgb(92, 56, 20)
HSL Code hsl(30, 64%, 22%)

#5c3814 Color Syntax

rgb()

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

 main {
    background-color: rgb(92, 56, 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(30, 64%, 22%);
  }

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 #5c3814

RGB Code Hex Code Preview
rgb(92, 56, 20, 10%) #5c38141a  
rgb(92, 56, 20, 20%) #5c381433  
rgb(92, 56, 20, 40%) #5c38144C  
rgb(92, 56, 20, 60%) #5c381499  
rgb(92, 56, 20, 80%) #5c3814CC  
rgb(92, 56, 20, 100%) #5c3814FF  

Saturated and desaturated colors of #5c3814

HSL Code Preview
hsl(30, 10%, 22%)  
hsl(30, 20%, 22%)  
hsl(30, 40%, 22%)  
hsl(30, 60%, 22%)  
hsl(30, 80%, 22%)  
hsl(30, 100%, 22%)  

#5c3814 Color Usage In CSS

 body {
    color: #5c3814;
    }
 p {
    color: rgb(92, 56, 20);
    }
 header {
    border-bottom:1px solid #5c3814;
    }
Recent Random Colors