Random Color Generator

#bafaae Color

Color Codes
Hex Code #bafaae
RGB Code rgb(186, 250, 174)
HSL Code hsl(111, 88%, 83%)

#bafaae Color Syntax

rgb()

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

 main {
    background-color: rgb(186, 250, 174);
   }

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(111, 88%, 83%);
  }

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

RGB Code Hex Code Preview
rgb(186, 250, 174, 10%) #bafaae1a  
rgb(186, 250, 174, 20%) #bafaae33  
rgb(186, 250, 174, 40%) #bafaae4C  
rgb(186, 250, 174, 60%) #bafaae99  
rgb(186, 250, 174, 80%) #bafaaeCC  
rgb(186, 250, 174, 100%) #bafaaeFF  

Saturated and desaturated colors of #bafaae

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

#bafaae Color Usage In CSS

 body {
    color: #bafaae;
    }
 p {
    color: rgb(186, 250, 174);
    }
 header {
    border-bottom:1px solid #bafaae;
    }
Recent Random Colors