Random Color Generator

#555d4e Color

Color Codes
Hex Code #555d4e
RGB Code rgb(85, 93, 78)
HSL Code hsl(92, 9%, 34%)

#555d4e Color Syntax

rgb()

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

 main {
    background-color: rgb(85, 93, 78);
   }

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(92, 9%, 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 #555d4e

RGB Code Hex Code Preview
rgb(85, 93, 78, 10%) #555d4e1a  
rgb(85, 93, 78, 20%) #555d4e33  
rgb(85, 93, 78, 40%) #555d4e4C  
rgb(85, 93, 78, 60%) #555d4e99  
rgb(85, 93, 78, 80%) #555d4eCC  
rgb(85, 93, 78, 100%) #555d4eFF  

Saturated and desaturated colors of #555d4e

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

#555d4e Color Usage In CSS

 body {
    color: #555d4e;
    }
 p {
    color: rgb(85, 93, 78);
    }
 header {
    border-bottom:1px solid #555d4e;
    }
Recent Random Colors