HEX: #B1B4DC
RGB: (177,180,220)
#B1B4DC contains red, green and blue colors in about the same proportion. Web safe color of #B1B4DC is #99CCCC (or #9CC).
#B1B4DC color RGB value is (177,180,220).
RGB: (177,180,220) (69%,71%,86%)
R 177 of 255 = 69%
G 180 of 255 = 71%
B 220 of 255 = 86%
R + G + B ~ 75%. #B1B4DC is quite light color.
R + G + B =
177 + 180 + 220 = 577 (100%)
R 177 of 577 ~ 30.68%
G 180 of 577 ~ 31.2%
B 220 of 577 ~ 38.13%
#B1B4DC color CMYK value is (20,18,0,14).
CMYK: (20,18,0,14) C20M18Y0K14 (20%,18%,0%,14%) (0.20/0.18/0.00/0.14)
B1 | B4 | DC | |
---|---|---|---|
RGB | 177 | 180 | 220 |
HSL | 236° | 38.05% | 77.84% |
HSB/HSV | 236° | 19.55% | 86.27% |
CMYK | 19.55% | 18.18% | 0.00% |
13.73% |
HEX | B1 | B4 | DC |
Decimal | 177 | 180 | 220 |
Binary | 10110001 | 10110100 | 11011100 |
Octal | 261 | 264 | 334 |
Examples of css and html codes for elements with #B1B4DC color. Also use rgb(177,180,220) instead hex code.
.myTextColor { color: #B1B4DC; }
<p style="color:#B1B4DC">This sample text font color is #B1B4DC.</p>
This text font color is #B1B4DC.
.myBgColor { background-color: #B1B4DC; }
<div style="background-color:#B1B4DC">Inner text</div>
This div background color is #B1B4DC.
.myBorderColor { border: 1px solid #B1B4DC; }
<div style="border:3px solid #B1B4DC">Div</div>
This div border color is #B1B4DC.
.myOpacity80 { color: #B1B4DC; opacity: 0.8; }
<p style="color:#B1B4DC;opacity:0.8;">80%</p>
Text with #B1B4DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B1B4DC;}
<p style="text-shadow: 3px 3px 1px #B1B4DC">Text here.</p>
This text has shadow with #B1B4DC color.
.textShadow {text-shadow: 3px 3px 1px #B1B4DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B1B4DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #B1B4DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B1B4DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B1B4DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #B1B4DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B1B4DC; -webkit-box-shadow: 1px 1px 3px 2px #B1B4DC; box-shadow: 1px 1px 3px 2px #B1B4DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B1B4DC; -webkit-box-shadow: 1px 1px 3px 2px #B1B4DC; box-shadow:1px 1px 3px 2px #B1B4DC;">
Div content here</div>
This text has color #B1B4DC on black background.
This text has color #B1B4DC on white background.
This text has black color on #B1B4DC background.
This text has white color on #B1B4DC background.