Random Color Generator

#834850 Color

Color Codes
Hex Code #834850
RGB Code rgb(131, 72, 80)
HSL Code hsl(352, 29%, 40%)

#834850 Color Syntax

rgb()

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

 main {
    background-color: rgb(131, 72, 80);
   }

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(352, 29%, 40%);
  }

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

RGB Code Hex Code Preview
rgb(131, 72, 80, 10%) #8348501a  
rgb(131, 72, 80, 20%) #83485033  
rgb(131, 72, 80, 40%) #8348504C  
rgb(131, 72, 80, 60%) #83485099  
rgb(131, 72, 80, 80%) #834850CC  
rgb(131, 72, 80, 100%) #834850FF  

Saturated and desaturated colors of #834850

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

#834850 Color Usage In CSS

 body {
    color: #834850;
    }
 p {
    color: rgb(131, 72, 80);
    }
 header {
    border-bottom:1px solid #834850;
    }
Recent Random Colors