Random Color Generator

#b2febf Color

Color Codes
Hex Code #b2febf
RGB Code rgb(178, 254, 191)
HSL Code hsl(130, 97%, 85%)

#b2febf Color Syntax

rgb()

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

 main {
    background-color: rgb(178, 254, 191);
   }

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(130, 97%, 85%);
  }

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

RGB Code Hex Code Preview
rgb(178, 254, 191, 10%) #b2febf1a  
rgb(178, 254, 191, 20%) #b2febf33  
rgb(178, 254, 191, 40%) #b2febf4C  
rgb(178, 254, 191, 60%) #b2febf99  
rgb(178, 254, 191, 80%) #b2febfCC  
rgb(178, 254, 191, 100%) #b2febfFF  

Saturated and desaturated colors of #b2febf

HSL Code Preview
hsl(130, 10%, 85%)  
hsl(130, 20%, 85%)  
hsl(130, 40%, 85%)  
hsl(130, 60%, 85%)  
hsl(130, 80%, 85%)  
hsl(130, 100%, 85%)  

#b2febf Color Usage In CSS

 body {
    color: #b2febf;
    }
 p {
    color: rgb(178, 254, 191);
    }
 header {
    border-bottom:1px solid #b2febf;
    }
Recent Random Colors