Random Color Generator

#9bb70f Color

Color Codes
Hex Code #9bb70f
RGB Code rgb(155, 183, 15)
HSL Code hsl(70, 85%, 39%)

#9bb70f Color Syntax

rgb()

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

 main {
    background-color: rgb(155, 183, 15);
   }

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(70, 85%, 39%);
  }

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 #9bb70f

RGB Code Hex Code Preview
rgb(155, 183, 15, 10%) #9bb70f1a  
rgb(155, 183, 15, 20%) #9bb70f33  
rgb(155, 183, 15, 40%) #9bb70f4C  
rgb(155, 183, 15, 60%) #9bb70f99  
rgb(155, 183, 15, 80%) #9bb70fCC  
rgb(155, 183, 15, 100%) #9bb70fFF  

Saturated and desaturated colors of #9bb70f

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

#9bb70f Color Usage In CSS

 body {
    color: #9bb70f;
    }
 p {
    color: rgb(155, 183, 15);
    }
 header {
    border-bottom:1px solid #9bb70f;
    }
Recent Random Colors