Random Color Generator

#34cdba Color

Color Codes
Hex Code #34cdba
RGB Code rgb(52, 205, 186)
HSL Code hsl(173, 60%, 50%)

#34cdba Color Syntax

rgb()

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

 main {
    background-color: rgb(52, 205, 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(173, 60%, 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 #34cdba

RGB Code Hex Code Preview
rgb(52, 205, 186, 10%) #34cdba1a  
rgb(52, 205, 186, 20%) #34cdba33  
rgb(52, 205, 186, 40%) #34cdba4C  
rgb(52, 205, 186, 60%) #34cdba99  
rgb(52, 205, 186, 80%) #34cdbaCC  
rgb(52, 205, 186, 100%) #34cdbaFF  

Saturated and desaturated colors of #34cdba

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

#34cdba Color Usage In CSS

 body {
    color: #34cdba;
    }
 p {
    color: rgb(52, 205, 186);
    }
 header {
    border-bottom:1px solid #34cdba;
    }
Recent Random Colors