Random Color Generator

#b4bce8 Color

Color Codes
Hex Code #b4bce8
RGB Code rgb(180, 188, 232)
HSL Code hsl(231, 53%, 81%)

#b4bce8 Color Syntax

rgb()

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

 main {
    background-color: rgb(180, 188, 232);
   }

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(231, 53%, 81%);
  }

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

RGB Code Hex Code Preview
rgb(180, 188, 232, 10%) #b4bce81a  
rgb(180, 188, 232, 20%) #b4bce833  
rgb(180, 188, 232, 40%) #b4bce84C  
rgb(180, 188, 232, 60%) #b4bce899  
rgb(180, 188, 232, 80%) #b4bce8CC  
rgb(180, 188, 232, 100%) #b4bce8FF  

Saturated and desaturated colors of #b4bce8

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

#b4bce8 Color Usage In CSS

 body {
    color: #b4bce8;
    }
 p {
    color: rgb(180, 188, 232);
    }
 header {
    border-bottom:1px solid #b4bce8;
    }
Recent Random Colors