Random Color Generator

#74b475 Color

Color Codes
Hex Code #74b475
RGB Code rgb(116, 180, 117)
HSL Code hsl(121, 30%, 58%)

#74b475 Color Syntax

rgb()

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

 main {
    background-color: rgb(116, 180, 117);
   }

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(121, 30%, 58%);
  }

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

RGB Code Hex Code Preview
rgb(116, 180, 117, 10%) #74b4751a  
rgb(116, 180, 117, 20%) #74b47533  
rgb(116, 180, 117, 40%) #74b4754C  
rgb(116, 180, 117, 60%) #74b47599  
rgb(116, 180, 117, 80%) #74b475CC  
rgb(116, 180, 117, 100%) #74b475FF  

Saturated and desaturated colors of #74b475

HSL Code Preview
hsl(121, 10%, 58%)  
hsl(121, 20%, 58%)  
hsl(121, 40%, 58%)  
hsl(121, 60%, 58%)  
hsl(121, 80%, 58%)  
hsl(121, 100%, 58%)  

#74b475 Color Usage In CSS

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