Random Color Generator

#b4b7d2 Color

Color Codes
Hex Code #b4b7d2
RGB Code rgb(180, 183, 210)
HSL Code hsl(234, 25%, 76%)

#b4b7d2 Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 183, 210);
   }

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(234, 25%, 76%);
  }

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

RGB Code Hex Code Preview
rgb(180, 183, 210, 10%) #b4b7d21a  
rgb(180, 183, 210, 20%) #b4b7d233  
rgb(180, 183, 210, 40%) #b4b7d24C  
rgb(180, 183, 210, 60%) #b4b7d299  
rgb(180, 183, 210, 80%) #b4b7d2CC  
rgb(180, 183, 210, 100%) #b4b7d2FF  

Saturated and desaturated colors of #b4b7d2

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

#b4b7d2 Color Usage In CSS

 body {
    color: #b4b7d2;
    }
 p {
    color: rgb(180, 183, 210);
    }
 header {
    border-bottom:1px solid #b4b7d2;
    }
Recent Random Colors