Random Color Generator

#a0d925 Color

Color Codes
Hex Code #a0d925
RGB Code rgb(160, 217, 37)
HSL Code hsl(79, 71%, 50%)

#a0d925 Color Syntax

rgb()

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

 main {
    background-color: rgb(160, 217, 37);
   }

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(79, 71%, 50%);
  }

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

RGB Code Hex Code Preview
rgb(160, 217, 37, 10%) #a0d9251a  
rgb(160, 217, 37, 20%) #a0d92533  
rgb(160, 217, 37, 40%) #a0d9254C  
rgb(160, 217, 37, 60%) #a0d92599  
rgb(160, 217, 37, 80%) #a0d925CC  
rgb(160, 217, 37, 100%) #a0d925FF  

Saturated and desaturated colors of #a0d925

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

#a0d925 Color Usage In CSS

 body {
    color: #a0d925;
    }
 p {
    color: rgb(160, 217, 37);
    }
 header {
    border-bottom:1px solid #a0d925;
    }
Recent Random Colors