Random Color Generator

#badb86 Color

Color Codes
Hex Code #badb86
RGB Code rgb(186, 219, 134)
HSL Code hsl(83, 54%, 69%)

#badb86 Color Syntax

rgb()

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

 main {
    background-color: rgb(186, 219, 134);
   }

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(83, 54%, 69%);
  }

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

RGB Code Hex Code Preview
rgb(186, 219, 134, 10%) #badb861a  
rgb(186, 219, 134, 20%) #badb8633  
rgb(186, 219, 134, 40%) #badb864C  
rgb(186, 219, 134, 60%) #badb8699  
rgb(186, 219, 134, 80%) #badb86CC  
rgb(186, 219, 134, 100%) #badb86FF  

Saturated and desaturated colors of #badb86

HSL Code Preview
hsl(83, 10%, 69%)  
hsl(83, 20%, 69%)  
hsl(83, 40%, 69%)  
hsl(83, 60%, 69%)  
hsl(83, 80%, 69%)  
hsl(83, 100%, 69%)  

#badb86 Color Usage In CSS

 body {
    color: #badb86;
    }
 p {
    color: rgb(186, 219, 134);
    }
 header {
    border-bottom:1px solid #badb86;
    }
Recent Random Colors