Random Color Generator

#a7cd27 Color

Color Codes
Hex Code #a7cd27
RGB Code rgb(167, 205, 39)
HSL Code hsl(74, 68%, 48%)

#a7cd27 Color Syntax

rgb()

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

 main {
    background-color: rgb(167, 205, 39);
   }

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(74, 68%, 48%);
  }

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

RGB Code Hex Code Preview
rgb(167, 205, 39, 10%) #a7cd271a  
rgb(167, 205, 39, 20%) #a7cd2733  
rgb(167, 205, 39, 40%) #a7cd274C  
rgb(167, 205, 39, 60%) #a7cd2799  
rgb(167, 205, 39, 80%) #a7cd27CC  
rgb(167, 205, 39, 100%) #a7cd27FF  

Saturated and desaturated colors of #a7cd27

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

#a7cd27 Color Usage In CSS

 body {
    color: #a7cd27;
    }
 p {
    color: rgb(167, 205, 39);
    }
 header {
    border-bottom:1px solid #a7cd27;
    }
Recent Random Colors