Random Color Generator

#20a6ba Color

Color Codes
Hex Code #20a6ba
RGB Code rgb(32, 166, 186)
HSL Code hsl(188, 71%, 43%)

#20a6ba Color Syntax

rgb()

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

 main {
    background-color: rgb(32, 166, 186);
   }

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(188, 71%, 43%);
  }

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 #20a6ba

RGB Code Hex Code Preview
rgb(32, 166, 186, 10%) #20a6ba1a  
rgb(32, 166, 186, 20%) #20a6ba33  
rgb(32, 166, 186, 40%) #20a6ba4C  
rgb(32, 166, 186, 60%) #20a6ba99  
rgb(32, 166, 186, 80%) #20a6baCC  
rgb(32, 166, 186, 100%) #20a6baFF  

Saturated and desaturated colors of #20a6ba

HSL Code Preview
hsl(188, 10%, 43%)  
hsl(188, 20%, 43%)  
hsl(188, 40%, 43%)  
hsl(188, 60%, 43%)  
hsl(188, 80%, 43%)  
hsl(188, 100%, 43%)  

#20a6ba Color Usage In CSS

 body {
    color: #20a6ba;
    }
 p {
    color: rgb(32, 166, 186);
    }
 header {
    border-bottom:1px solid #20a6ba;
    }
Recent Random Colors