Random Color Generator

#20a3b6 Color

Color Codes
Hex Code #20a3b6
RGB Code rgb(32, 163, 182)
HSL Code hsl(188, 70%, 42%)

#20a3b6 Color Syntax

rgb()

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

 main {
    background-color: rgb(32, 163, 182);
   }

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, 70%, 42%);
  }

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

RGB Code Hex Code Preview
rgb(32, 163, 182, 10%) #20a3b61a  
rgb(32, 163, 182, 20%) #20a3b633  
rgb(32, 163, 182, 40%) #20a3b64C  
rgb(32, 163, 182, 60%) #20a3b699  
rgb(32, 163, 182, 80%) #20a3b6CC  
rgb(32, 163, 182, 100%) #20a3b6FF  

Saturated and desaturated colors of #20a3b6

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

#20a3b6 Color Usage In CSS

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