Random Color Generator

#74c38e Color

Color Codes
Hex Code #74c38e
RGB Code rgb(116, 195, 142)
HSL Code hsl(140, 40%, 61%)

#74c38e Color Syntax

rgb()

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

 main {
    background-color: rgb(116, 195, 142);
   }

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(140, 40%, 61%);
  }

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 #74c38e

RGB Code Hex Code Preview
rgb(116, 195, 142, 10%) #74c38e1a  
rgb(116, 195, 142, 20%) #74c38e33  
rgb(116, 195, 142, 40%) #74c38e4C  
rgb(116, 195, 142, 60%) #74c38e99  
rgb(116, 195, 142, 80%) #74c38eCC  
rgb(116, 195, 142, 100%) #74c38eFF  

Saturated and desaturated colors of #74c38e

HSL Code Preview
hsl(140, 10%, 61%)  
hsl(140, 20%, 61%)  
hsl(140, 40%, 61%)  
hsl(140, 60%, 61%)  
hsl(140, 80%, 61%)  
hsl(140, 100%, 61%)  

#74c38e Color Usage In CSS

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