Random Color Generator

#b0b3ca Color

Color Codes
Hex Code #b0b3ca
RGB Code rgb(176, 179, 202)
HSL Code hsl(233, 20%, 74%)

#b0b3ca Color Syntax

rgb()

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

 main {
    background-color: rgb(176, 179, 202);
   }

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(233, 20%, 74%);
  }

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

RGB Code Hex Code Preview
rgb(176, 179, 202, 10%) #b0b3ca1a  
rgb(176, 179, 202, 20%) #b0b3ca33  
rgb(176, 179, 202, 40%) #b0b3ca4C  
rgb(176, 179, 202, 60%) #b0b3ca99  
rgb(176, 179, 202, 80%) #b0b3caCC  
rgb(176, 179, 202, 100%) #b0b3caFF  

Saturated and desaturated colors of #b0b3ca

HSL Code Preview
hsl(233, 10%, 74%)  
hsl(233, 20%, 74%)  
hsl(233, 40%, 74%)  
hsl(233, 60%, 74%)  
hsl(233, 80%, 74%)  
hsl(233, 100%, 74%)  

#b0b3ca Color Usage In CSS

 body {
    color: #b0b3ca;
    }
 p {
    color: rgb(176, 179, 202);
    }
 header {
    border-bottom:1px solid #b0b3ca;
    }
Recent Random Colors