Random Color Generator

#76f184 Color

Color Codes
Hex Code #76f184
RGB Code rgb(118, 241, 132)
HSL Code hsl(127, 81%, 70%)

#76f184 Color Syntax

rgb()

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

 main {
    background-color: rgb(118, 241, 132);
   }

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(127, 81%, 70%);
  }

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 #76f184

RGB Code Hex Code Preview
rgb(118, 241, 132, 10%) #76f1841a  
rgb(118, 241, 132, 20%) #76f18433  
rgb(118, 241, 132, 40%) #76f1844C  
rgb(118, 241, 132, 60%) #76f18499  
rgb(118, 241, 132, 80%) #76f184CC  
rgb(118, 241, 132, 100%) #76f184FF  

Saturated and desaturated colors of #76f184

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

#76f184 Color Usage In CSS

 body {
    color: #76f184;
    }
 p {
    color: rgb(118, 241, 132);
    }
 header {
    border-bottom:1px solid #76f184;
    }
Recent Random Colors