Random Color Generator

#74ed06 Color

Color Codes
Hex Code #74ed06
RGB Code rgb(116, 237, 06)
HSL Code hsl(91, 95%, 48%)

#74ed06 Color Syntax

rgb()

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

 main {
    background-color: rgb(116, 237, 06);
   }

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(91, 95%, 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 #74ed06

RGB Code Hex Code Preview
rgb(116, 237, 06, 10%) #74ed061a  
rgb(116, 237, 06, 20%) #74ed0633  
rgb(116, 237, 06, 40%) #74ed064C  
rgb(116, 237, 06, 60%) #74ed0699  
rgb(116, 237, 06, 80%) #74ed06CC  
rgb(116, 237, 06, 100%) #74ed06FF  

Saturated and desaturated colors of #74ed06

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

#74ed06 Color Usage In CSS

 body {
    color: #74ed06;
    }
 p {
    color: rgb(116, 237, 06);
    }
 header {
    border-bottom:1px solid #74ed06;
    }
Recent Random Colors