Random Color Generator

#74c698 Color

Color Codes
Hex Code #74c698
RGB Code rgb(116, 198, 152)
HSL Code hsl(146, 42%, 62%)

#74c698 Color Syntax

rgb()

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

 main {
    background-color: rgb(116, 198, 152);
   }

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(146, 42%, 62%);
  }

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

RGB Code Hex Code Preview
rgb(116, 198, 152, 10%) #74c6981a  
rgb(116, 198, 152, 20%) #74c69833  
rgb(116, 198, 152, 40%) #74c6984C  
rgb(116, 198, 152, 60%) #74c69899  
rgb(116, 198, 152, 80%) #74c698CC  
rgb(116, 198, 152, 100%) #74c698FF  

Saturated and desaturated colors of #74c698

HSL Code Preview
hsl(146, 10%, 62%)  
hsl(146, 20%, 62%)  
hsl(146, 40%, 62%)  
hsl(146, 60%, 62%)  
hsl(146, 80%, 62%)  
hsl(146, 100%, 62%)  

#74c698 Color Usage In CSS

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