Random Color Generator

#bdb2bc Color

Color Codes
Hex Code #bdb2bc
RGB Code rgb(189, 178, 188)
HSL Code hsl(305, 8%, 72%)

#bdb2bc Color Syntax

rgb()

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

 main {
    background-color: rgb(189, 178, 188);
   }

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(305, 8%, 72%);
  }

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

RGB Code Hex Code Preview
rgb(189, 178, 188, 10%) #bdb2bc1a  
rgb(189, 178, 188, 20%) #bdb2bc33  
rgb(189, 178, 188, 40%) #bdb2bc4C  
rgb(189, 178, 188, 60%) #bdb2bc99  
rgb(189, 178, 188, 80%) #bdb2bcCC  
rgb(189, 178, 188, 100%) #bdb2bcFF  

Saturated and desaturated colors of #bdb2bc

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

#bdb2bc Color Usage In CSS

 body {
    color: #bdb2bc;
    }
 p {
    color: rgb(189, 178, 188);
    }
 header {
    border-bottom:1px solid #bdb2bc;
    }
Recent Random Colors