Random Color Generator

#7ab682 Color

Color Codes
Hex Code #7ab682
RGB Code rgb(122, 182, 130)
HSL Code hsl(128, 29%, 60%)

#7ab682 Color Syntax

rgb()

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

 main {
    background-color: rgb(122, 182, 130);
   }

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(128, 29%, 60%);
  }

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 #7ab682

RGB Code Hex Code Preview
rgb(122, 182, 130, 10%) #7ab6821a  
rgb(122, 182, 130, 20%) #7ab68233  
rgb(122, 182, 130, 40%) #7ab6824C  
rgb(122, 182, 130, 60%) #7ab68299  
rgb(122, 182, 130, 80%) #7ab682CC  
rgb(122, 182, 130, 100%) #7ab682FF  

Saturated and desaturated colors of #7ab682

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

#7ab682 Color Usage In CSS

 body {
    color: #7ab682;
    }
 p {
    color: rgb(122, 182, 130);
    }
 header {
    border-bottom:1px solid #7ab682;
    }
Recent Random Colors