Random Color Generator

#56a09c Color

Color Codes
Hex Code #56a09c
RGB Code rgb(86, 160, 156)
HSL Code hsl(177, 30%, 48%)

#56a09c Color Syntax

rgb()

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

 main {
    background-color: rgb(86, 160, 156);
   }

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(177, 30%, 48%);
  }

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 #56a09c

RGB Code Hex Code Preview
rgb(86, 160, 156, 10%) #56a09c1a  
rgb(86, 160, 156, 20%) #56a09c33  
rgb(86, 160, 156, 40%) #56a09c4C  
rgb(86, 160, 156, 60%) #56a09c99  
rgb(86, 160, 156, 80%) #56a09cCC  
rgb(86, 160, 156, 100%) #56a09cFF  

Saturated and desaturated colors of #56a09c

HSL Code Preview
hsl(177, 10%, 48%)  
hsl(177, 20%, 48%)  
hsl(177, 40%, 48%)  
hsl(177, 60%, 48%)  
hsl(177, 80%, 48%)  
hsl(177, 100%, 48%)  

#56a09c Color Usage In CSS

 body {
    color: #56a09c;
    }
 p {
    color: rgb(86, 160, 156);
    }
 header {
    border-bottom:1px solid #56a09c;
    }
Recent Random Colors