Random Color Generator

#adcb25 Color

Color Codes
Hex Code #adcb25
RGB Code rgb(173, 203, 37)
HSL Code hsl(71, 69%, 47%)

#adcb25 Color Syntax

rgb()

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

 main {
    background-color: rgb(173, 203, 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(71, 69%, 47%);
  }

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

RGB Code Hex Code Preview
rgb(173, 203, 37, 10%) #adcb251a  
rgb(173, 203, 37, 20%) #adcb2533  
rgb(173, 203, 37, 40%) #adcb254C  
rgb(173, 203, 37, 60%) #adcb2599  
rgb(173, 203, 37, 80%) #adcb25CC  
rgb(173, 203, 37, 100%) #adcb25FF  

Saturated and desaturated colors of #adcb25

HSL Code Preview
hsl(71, 10%, 47%)  
hsl(71, 20%, 47%)  
hsl(71, 40%, 47%)  
hsl(71, 60%, 47%)  
hsl(71, 80%, 47%)  
hsl(71, 100%, 47%)  

#adcb25 Color Usage In CSS

 body {
    color: #adcb25;
    }
 p {
    color: rgb(173, 203, 37);
    }
 header {
    border-bottom:1px solid #adcb25;
    }
Recent Random Colors