Random Color Generator

#96cc67 Color

Color Codes
Hex Code #96cc67
RGB Code rgb(150, 204, 103)
HSL Code hsl(92, 50%, 60%)

#96cc67 Color Syntax

rgb()

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

 main {
    background-color: rgb(150, 204, 103);
   }

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(92, 50%, 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 #96cc67

RGB Code Hex Code Preview
rgb(150, 204, 103, 10%) #96cc671a  
rgb(150, 204, 103, 20%) #96cc6733  
rgb(150, 204, 103, 40%) #96cc674C  
rgb(150, 204, 103, 60%) #96cc6799  
rgb(150, 204, 103, 80%) #96cc67CC  
rgb(150, 204, 103, 100%) #96cc67FF  

Saturated and desaturated colors of #96cc67

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

#96cc67 Color Usage In CSS

 body {
    color: #96cc67;
    }
 p {
    color: rgb(150, 204, 103);
    }
 header {
    border-bottom:1px solid #96cc67;
    }
Recent Random Colors