HEX: #B0BBDA
RGB: (176,187,218)
#B0BBDA contains red, green and blue colors in about the same proportion. Web safe color of #B0BBDA is #99CCCC (or #9CC).
#B0BBDA color RGB value is (176,187,218).
RGB: (176,187,218) (69%,73%,85%)
R 176 of 255 = 69%
G 187 of 255 = 73%
B 218 of 255 = 85%
R + G + B ~ 76%. #B0BBDA is quite light color.
R + G + B =
176 + 187 + 218 = 581 (100%)
R 176 of 581 ~ 30.29%
G 187 of 581 ~ 32.19%
B 218 of 581 ~ 37.52%
#B0BBDA color CMYK value is (19,14,0,15).
CMYK: (19,14,0,15) C19M14Y0K15 (19%,14%,0%,15%) (0.19/0.14/0.00/0.15)
B0 | BB | DA | |
---|---|---|---|
RGB | 176 | 187 | 218 |
HSL | 224° | 36.21% | 77.25% |
HSB/HSV | 224° | 19.27% | 85.49% |
CMYK | 19.27% | 14.22% | 0.00% |
14.51% |
HEX | B0 | BB | DA |
Decimal | 176 | 187 | 218 |
Binary | 10110000 | 10111011 | 11011010 |
Octal | 260 | 273 | 332 |
Examples of css and html codes for elements with #B0BBDA color. Also use rgb(176,187,218) instead hex code.
.myTextColor { color: #B0BBDA; }
<p style="color:#B0BBDA">This sample text font color is #B0BBDA.</p>
This text font color is #B0BBDA.
.myBgColor { background-color: #B0BBDA; }
<div style="background-color:#B0BBDA">Inner text</div>
This div background color is #B0BBDA.
.myBorderColor { border: 1px solid #B0BBDA; }
<div style="border:3px solid #B0BBDA">Div</div>
This div border color is #B0BBDA.
.myOpacity80 { color: #B0BBDA; opacity: 0.8; }
<p style="color:#B0BBDA;opacity:0.8;">80%</p>
Text with #B0BBDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B0BBDA;}
<p style="text-shadow: 3px 3px 1px #B0BBDA">Text here.</p>
This text has shadow with #B0BBDA color.
.textShadow {text-shadow: 3px 3px 1px #B0BBDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B0BBDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #B0BBDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B0BBDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B0BBDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #B0BBDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B0BBDA; -webkit-box-shadow: 1px 1px 3px 2px #B0BBDA; box-shadow: 1px 1px 3px 2px #B0BBDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B0BBDA; -webkit-box-shadow: 1px 1px 3px 2px #B0BBDA; box-shadow:1px 1px 3px 2px #B0BBDA;">
Div content here</div>
This text has color #B0BBDA on black background.
This text has color #B0BBDA on white background.
This text has black color on #B0BBDA background.
This text has white color on #B0BBDA background.