Random Color Generator

#01edeb Color

Color Codes
Hex Code #01edeb
RGB Code rgb(01, 237, 235)
HSL Code hsl(179, 99%, 47%)

#01edeb Color Syntax

rgb()

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

 main {
    background-color: rgb(01, 237, 235);
   }

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(179, 99%, 47%);
  }

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 #01edeb

RGB Code Hex Code Preview
rgb(01, 237, 235, 10%) #01edeb1a  
rgb(01, 237, 235, 20%) #01edeb33  
rgb(01, 237, 235, 40%) #01edeb4C  
rgb(01, 237, 235, 60%) #01edeb99  
rgb(01, 237, 235, 80%) #01edebCC  
rgb(01, 237, 235, 100%) #01edebFF  

Saturated and desaturated colors of #01edeb

HSL Code Preview
hsl(179, 10%, 47%)  
hsl(179, 20%, 47%)  
hsl(179, 40%, 47%)  
hsl(179, 60%, 47%)  
hsl(179, 80%, 47%)  
hsl(179, 100%, 47%)  

#01edeb Color Usage In CSS

 body {
    color: #01edeb;
    }
 p {
    color: rgb(01, 237, 235);
    }
 header {
    border-bottom:1px solid #01edeb;
    }
Recent Random Colors