Random Color Generator

#9bf88c Color

Color Codes
Hex Code #9bf88c
RGB Code rgb(155, 248, 140)
HSL Code hsl(112, 89%, 76%)

#9bf88c Color Syntax

rgb()

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

 main {
    background-color: rgb(155, 248, 140);
   }

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(112, 89%, 76%);
  }

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

RGB Code Hex Code Preview
rgb(155, 248, 140, 10%) #9bf88c1a  
rgb(155, 248, 140, 20%) #9bf88c33  
rgb(155, 248, 140, 40%) #9bf88c4C  
rgb(155, 248, 140, 60%) #9bf88c99  
rgb(155, 248, 140, 80%) #9bf88cCC  
rgb(155, 248, 140, 100%) #9bf88cFF  

Saturated and desaturated colors of #9bf88c

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

#9bf88c Color Usage In CSS

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