Random Color Generator

#b1bed6 Color

Color Codes
Hex Code #b1bed6
RGB Code rgb(177, 190, 214)
HSL Code hsl(219, 31%, 77%)

#b1bed6 Color Syntax

rgb()

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

 main {
    background-color: rgb(177, 190, 214);
   }

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(219, 31%, 77%);
  }

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

RGB Code Hex Code Preview
rgb(177, 190, 214, 10%) #b1bed61a  
rgb(177, 190, 214, 20%) #b1bed633  
rgb(177, 190, 214, 40%) #b1bed64C  
rgb(177, 190, 214, 60%) #b1bed699  
rgb(177, 190, 214, 80%) #b1bed6CC  
rgb(177, 190, 214, 100%) #b1bed6FF  

Saturated and desaturated colors of #b1bed6

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

#b1bed6 Color Usage In CSS

 body {
    color: #b1bed6;
    }
 p {
    color: rgb(177, 190, 214);
    }
 header {
    border-bottom:1px solid #b1bed6;
    }
Recent Random Colors