Random Color Generator

#55586c Color

Color Codes
Hex Code #55586c
RGB Code rgb(85, 88, 108)
HSL Code hsl(232, 12%, 38%)

#55586c Color Syntax

rgb()

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

 main {
    background-color: rgb(85, 88, 108);
   }

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(232, 12%, 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 #55586c

RGB Code Hex Code Preview
rgb(85, 88, 108, 10%) #55586c1a  
rgb(85, 88, 108, 20%) #55586c33  
rgb(85, 88, 108, 40%) #55586c4C  
rgb(85, 88, 108, 60%) #55586c99  
rgb(85, 88, 108, 80%) #55586cCC  
rgb(85, 88, 108, 100%) #55586cFF  

Saturated and desaturated colors of #55586c

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

#55586c Color Usage In CSS

 body {
    color: #55586c;
    }
 p {
    color: rgb(85, 88, 108);
    }
 header {
    border-bottom:1px solid #55586c;
    }
Recent Random Colors