Random Color Generator

#835a6d Color

Color Codes
Hex Code #835a6d
RGB Code rgb(131, 90, 109)
HSL Code hsl(332, 19%, 43%)

#835a6d Color Syntax

rgb()

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

 main {
    background-color: rgb(131, 90, 109);
   }

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(332, 19%, 43%);
  }

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 #835a6d

RGB Code Hex Code Preview
rgb(131, 90, 109, 10%) #835a6d1a  
rgb(131, 90, 109, 20%) #835a6d33  
rgb(131, 90, 109, 40%) #835a6d4C  
rgb(131, 90, 109, 60%) #835a6d99  
rgb(131, 90, 109, 80%) #835a6dCC  
rgb(131, 90, 109, 100%) #835a6dFF  

Saturated and desaturated colors of #835a6d

HSL Code Preview
hsl(332, 10%, 43%)  
hsl(332, 20%, 43%)  
hsl(332, 40%, 43%)  
hsl(332, 60%, 43%)  
hsl(332, 80%, 43%)  
hsl(332, 100%, 43%)  

#835a6d Color Usage In CSS

 body {
    color: #835a6d;
    }
 p {
    color: rgb(131, 90, 109);
    }
 header {
    border-bottom:1px solid #835a6d;
    }
Recent Random Colors