Random Color Generator

#abfa3b Color

Color Codes
Hex Code #abfa3b
RGB Code rgb(171, 250, 59)
HSL Code hsl(85, 95%, 61%)

#abfa3b Color Syntax

rgb()

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

 main {
    background-color: rgb(171, 250, 59);
   }

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(85, 95%, 61%);
  }

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 #abfa3b

RGB Code Hex Code Preview
rgb(171, 250, 59, 10%) #abfa3b1a  
rgb(171, 250, 59, 20%) #abfa3b33  
rgb(171, 250, 59, 40%) #abfa3b4C  
rgb(171, 250, 59, 60%) #abfa3b99  
rgb(171, 250, 59, 80%) #abfa3bCC  
rgb(171, 250, 59, 100%) #abfa3bFF  

Saturated and desaturated colors of #abfa3b

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

#abfa3b Color Usage In CSS

 body {
    color: #abfa3b;
    }
 p {
    color: rgb(171, 250, 59);
    }
 header {
    border-bottom:1px solid #abfa3b;
    }
Recent Random Colors