Random Color Generator

#b1bbe7 Color

Color Codes
Hex Code #b1bbe7
RGB Code rgb(177, 187, 231)
HSL Code hsl(229, 53%, 80%)

#b1bbe7 Color Syntax

rgb()

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

 main {
    background-color: rgb(177, 187, 231);
   }

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(229, 53%, 80%);
  }

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

RGB Code Hex Code Preview
rgb(177, 187, 231, 10%) #b1bbe71a  
rgb(177, 187, 231, 20%) #b1bbe733  
rgb(177, 187, 231, 40%) #b1bbe74C  
rgb(177, 187, 231, 60%) #b1bbe799  
rgb(177, 187, 231, 80%) #b1bbe7CC  
rgb(177, 187, 231, 100%) #b1bbe7FF  

Saturated and desaturated colors of #b1bbe7

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

#b1bbe7 Color Usage In CSS

 body {
    color: #b1bbe7;
    }
 p {
    color: rgb(177, 187, 231);
    }
 header {
    border-bottom:1px solid #b1bbe7;
    }
Recent Random Colors