Random Color Generator

#76ba83 Color

Color Codes
Hex Code #76ba83
RGB Code rgb(118, 186, 131)
HSL Code hsl(131, 33%, 60%)

#76ba83 Color Syntax

rgb()

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

 main {
    background-color: rgb(118, 186, 131);
   }

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(131, 33%, 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 #76ba83

RGB Code Hex Code Preview
rgb(118, 186, 131, 10%) #76ba831a  
rgb(118, 186, 131, 20%) #76ba8333  
rgb(118, 186, 131, 40%) #76ba834C  
rgb(118, 186, 131, 60%) #76ba8399  
rgb(118, 186, 131, 80%) #76ba83CC  
rgb(118, 186, 131, 100%) #76ba83FF  

Saturated and desaturated colors of #76ba83

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

#76ba83 Color Usage In CSS

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