Random Color Generator

#55a8a2 Color

Color Codes
Hex Code #55a8a2
RGB Code rgb(85, 168, 162)
HSL Code hsl(176, 33%, 50%)

#55a8a2 Color Syntax

rgb()

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

 main {
    background-color: rgb(85, 168, 162);
   }

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(176, 33%, 50%);
  }

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 #55a8a2

RGB Code Hex Code Preview
rgb(85, 168, 162, 10%) #55a8a21a  
rgb(85, 168, 162, 20%) #55a8a233  
rgb(85, 168, 162, 40%) #55a8a24C  
rgb(85, 168, 162, 60%) #55a8a299  
rgb(85, 168, 162, 80%) #55a8a2CC  
rgb(85, 168, 162, 100%) #55a8a2FF  

Saturated and desaturated colors of #55a8a2

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

#55a8a2 Color Usage In CSS

 body {
    color: #55a8a2;
    }
 p {
    color: rgb(85, 168, 162);
    }
 header {
    border-bottom:1px solid #55a8a2;
    }
Recent Random Colors