Random Color Generator

#adb960 Color

Color Codes
Hex Code #adb960
RGB Code rgb(173, 185, 96)
HSL Code hsl(68, 39%, 55%)

#adb960 Color Syntax

rgb()

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

 main {
    background-color: rgb(173, 185, 96);
   }

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(68, 39%, 55%);
  }

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

RGB Code Hex Code Preview
rgb(173, 185, 96, 10%) #adb9601a  
rgb(173, 185, 96, 20%) #adb96033  
rgb(173, 185, 96, 40%) #adb9604C  
rgb(173, 185, 96, 60%) #adb96099  
rgb(173, 185, 96, 80%) #adb960CC  
rgb(173, 185, 96, 100%) #adb960FF  

Saturated and desaturated colors of #adb960

HSL Code Preview
hsl(68, 10%, 55%)  
hsl(68, 20%, 55%)  
hsl(68, 40%, 55%)  
hsl(68, 60%, 55%)  
hsl(68, 80%, 55%)  
hsl(68, 100%, 55%)  

#adb960 Color Usage In CSS

 body {
    color: #adb960;
    }
 p {
    color: rgb(173, 185, 96);
    }
 header {
    border-bottom:1px solid #adb960;
    }
Recent Random Colors