Random Color Generator

#564104 Color

Color Codes
Hex Code #564104
RGB Code rgb(86, 65, 04)
HSL Code hsl(45, 91%, 18%)

#564104 Color Syntax

rgb()

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

 main {
    background-color: rgb(86, 65, 04);
   }

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(45, 91%, 18%);
  }

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

RGB Code Hex Code Preview
rgb(86, 65, 04, 10%) #5641041a  
rgb(86, 65, 04, 20%) #56410433  
rgb(86, 65, 04, 40%) #5641044C  
rgb(86, 65, 04, 60%) #56410499  
rgb(86, 65, 04, 80%) #564104CC  
rgb(86, 65, 04, 100%) #564104FF  

Saturated and desaturated colors of #564104

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

#564104 Color Usage In CSS

 body {
    color: #564104;
    }
 p {
    color: rgb(86, 65, 04);
    }
 header {
    border-bottom:1px solid #564104;
    }
Recent Random Colors