Random Color Generator

#515c53 Color

Color Codes
Hex Code #515c53
RGB Code rgb(81, 92, 83)
HSL Code hsl(131, 6%, 34%)

#515c53 Color Syntax

rgb()

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

 main {
    background-color: rgb(81, 92, 83);
   }

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(131, 6%, 34%);
  }

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 #515c53

RGB Code Hex Code Preview
rgb(81, 92, 83, 10%) #515c531a  
rgb(81, 92, 83, 20%) #515c5333  
rgb(81, 92, 83, 40%) #515c534C  
rgb(81, 92, 83, 60%) #515c5399  
rgb(81, 92, 83, 80%) #515c53CC  
rgb(81, 92, 83, 100%) #515c53FF  

Saturated and desaturated colors of #515c53

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

#515c53 Color Usage In CSS

 body {
    color: #515c53;
    }
 p {
    color: rgb(81, 92, 83);
    }
 header {
    border-bottom:1px solid #515c53;
    }
Recent Random Colors