Random Color Generator

#54532e Color

Color Codes
Hex Code #54532e
RGB Code rgb(84, 83, 46)
HSL Code hsl(58, 29%, 25%)

#54532e Color Syntax

rgb()

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

 main {
    background-color: rgb(84, 83, 46);
   }

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(58, 29%, 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 #54532e

RGB Code Hex Code Preview
rgb(84, 83, 46, 10%) #54532e1a  
rgb(84, 83, 46, 20%) #54532e33  
rgb(84, 83, 46, 40%) #54532e4C  
rgb(84, 83, 46, 60%) #54532e99  
rgb(84, 83, 46, 80%) #54532eCC  
rgb(84, 83, 46, 100%) #54532eFF  

Saturated and desaturated colors of #54532e

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

#54532e Color Usage In CSS

 body {
    color: #54532e;
    }
 p {
    color: rgb(84, 83, 46);
    }
 header {
    border-bottom:1px solid #54532e;
    }
Recent Random Colors