Random Color Generator

#b8c0dd Color

Color Codes
Hex Code #b8c0dd
RGB Code rgb(184, 192, 221)
HSL Code hsl(227, 35%, 79%)

#b8c0dd Color Syntax

rgb()

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

 main {
    background-color: rgb(184, 192, 221);
   }

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(227, 35%, 79%);
  }

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

RGB Code Hex Code Preview
rgb(184, 192, 221, 10%) #b8c0dd1a  
rgb(184, 192, 221, 20%) #b8c0dd33  
rgb(184, 192, 221, 40%) #b8c0dd4C  
rgb(184, 192, 221, 60%) #b8c0dd99  
rgb(184, 192, 221, 80%) #b8c0ddCC  
rgb(184, 192, 221, 100%) #b8c0ddFF  

Saturated and desaturated colors of #b8c0dd

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

#b8c0dd Color Usage In CSS

 body {
    color: #b8c0dd;
    }
 p {
    color: rgb(184, 192, 221);
    }
 header {
    border-bottom:1px solid #b8c0dd;
    }
Recent Random Colors