Random Color Generator

#01f2d9 Color

Color Codes
Hex Code #01f2d9
RGB Code rgb(01, 242, 217)
HSL Code hsl(174, 99%, 48%)

#01f2d9 Color Syntax

rgb()

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

 main {
    background-color: rgb(01, 242, 217);
   }

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(174, 99%, 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 #01f2d9

RGB Code Hex Code Preview
rgb(01, 242, 217, 10%) #01f2d91a  
rgb(01, 242, 217, 20%) #01f2d933  
rgb(01, 242, 217, 40%) #01f2d94C  
rgb(01, 242, 217, 60%) #01f2d999  
rgb(01, 242, 217, 80%) #01f2d9CC  
rgb(01, 242, 217, 100%) #01f2d9FF  

Saturated and desaturated colors of #01f2d9

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

#01f2d9 Color Usage In CSS

 body {
    color: #01f2d9;
    }
 p {
    color: rgb(01, 242, 217);
    }
 header {
    border-bottom:1px solid #01f2d9;
    }
Recent Random Colors