Random Color Generator

#558984 Color

Color Codes
Hex Code #558984
RGB Code rgb(85, 137, 132)
HSL Code hsl(174, 23%, 44%)

#558984 Color Syntax

rgb()

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

 main {
    background-color: rgb(85, 137, 132);
   }

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(174, 23%, 44%);
  }

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

RGB Code Hex Code Preview
rgb(85, 137, 132, 10%) #5589841a  
rgb(85, 137, 132, 20%) #55898433  
rgb(85, 137, 132, 40%) #5589844C  
rgb(85, 137, 132, 60%) #55898499  
rgb(85, 137, 132, 80%) #558984CC  
rgb(85, 137, 132, 100%) #558984FF  

Saturated and desaturated colors of #558984

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

#558984 Color Usage In CSS

 body {
    color: #558984;
    }
 p {
    color: rgb(85, 137, 132);
    }
 header {
    border-bottom:1px solid #558984;
    }
Recent Random Colors