Random Color Generator

#baad20 Color

Color Codes
Hex Code #baad20
RGB Code rgb(186, 173, 32)
HSL Code hsl(55, 71%, 43%)

#baad20 Color Syntax

rgb()

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

 main {
    background-color: rgb(186, 173, 32);
   }

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(55, 71%, 43%);
  }

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

RGB Code Hex Code Preview
rgb(186, 173, 32, 10%) #baad201a  
rgb(186, 173, 32, 20%) #baad2033  
rgb(186, 173, 32, 40%) #baad204C  
rgb(186, 173, 32, 60%) #baad2099  
rgb(186, 173, 32, 80%) #baad20CC  
rgb(186, 173, 32, 100%) #baad20FF  

Saturated and desaturated colors of #baad20

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

#baad20 Color Usage In CSS

 body {
    color: #baad20;
    }
 p {
    color: rgb(186, 173, 32);
    }
 header {
    border-bottom:1px solid #baad20;
    }
Recent Random Colors