Random Color Generator

#7f5543 Color

Color Codes
Hex Code #7f5543
RGB Code rgb(127, 85, 67)
HSL Code hsl(18, 31%, 38%)

#7f5543 Color Syntax

rgb()

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

 main {
    background-color: rgb(127, 85, 67);
   }

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(18, 31%, 38%);
  }

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

RGB Code Hex Code Preview
rgb(127, 85, 67, 10%) #7f55431a  
rgb(127, 85, 67, 20%) #7f554333  
rgb(127, 85, 67, 40%) #7f55434C  
rgb(127, 85, 67, 60%) #7f554399  
rgb(127, 85, 67, 80%) #7f5543CC  
rgb(127, 85, 67, 100%) #7f5543FF  

Saturated and desaturated colors of #7f5543

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

#7f5543 Color Usage In CSS

 body {
    color: #7f5543;
    }
 p {
    color: rgb(127, 85, 67);
    }
 header {
    border-bottom:1px solid #7f5543;
    }
Recent Random Colors