Random Color Generator

#badb95 Color

Color Codes
Hex Code #badb95
RGB Code rgb(186, 219, 149)
HSL Code hsl(88, 49%, 72%)

#badb95 Color Syntax

rgb()

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

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

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(88, 49%, 72%);
  }

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

RGB Code Hex Code Preview
rgb(186, 219, 149, 10%) #badb951a  
rgb(186, 219, 149, 20%) #badb9533  
rgb(186, 219, 149, 40%) #badb954C  
rgb(186, 219, 149, 60%) #badb9599  
rgb(186, 219, 149, 80%) #badb95CC  
rgb(186, 219, 149, 100%) #badb95FF  

Saturated and desaturated colors of #badb95

HSL Code Preview
hsl(88, 10%, 72%)  
hsl(88, 20%, 72%)  
hsl(88, 40%, 72%)  
hsl(88, 60%, 72%)  
hsl(88, 80%, 72%)  
hsl(88, 100%, 72%)  

#badb95 Color Usage In CSS

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