HEX: #B2BBCA
RGB: (178,187,202)
#B2BBCA contains red, green and blue colors in about the same proportion. Web safe color of #B2BBCA is #99CCCC (or #9CC).
#B2BBCA color RGB value is (178,187,202).
RGB: (178,187,202) (70%,73%,79%)
R 178 of 255 = 70%
G 187 of 255 = 73%
B 202 of 255 = 79%
R + G + B ~ 74%. #B2BBCA is quite light color.
R + G + B =
178 + 187 + 202 = 567 (100%)
R 178 of 567 ~ 31.39%
G 187 of 567 ~ 32.98%
B 202 of 567 ~ 35.63%
#B2BBCA color CMYK value is (12,7,0,21).
CMYK: (12,7,0,21) C12M7Y0K21 (12%,7%,0%,21%) (0.12/0.07/0.00/0.21)
B2 | BB | CA | |
---|---|---|---|
RGB | 178 | 187 | 202 |
HSL | 218° | 18.46% | 74.51% |
HSB/HSV | 218° | 11.88% | 79.22% |
CMYK | 11.88% | 7.43% | 0.00% |
20.78% |
HEX | B2 | BB | CA |
Decimal | 178 | 187 | 202 |
Binary | 10110010 | 10111011 | 11001010 |
Octal | 262 | 273 | 312 |
Examples of css and html codes for elements with #B2BBCA color. Also use rgb(178,187,202) instead hex code.
.myTextColor { color: #B2BBCA; }
<p style="color:#B2BBCA">This sample text font color is #B2BBCA.</p>
This text font color is #B2BBCA.
.myBgColor { background-color: #B2BBCA; }
<div style="background-color:#B2BBCA">Inner text</div>
This div background color is #B2BBCA.
.myBorderColor { border: 1px solid #B2BBCA; }
<div style="border:3px solid #B2BBCA">Div</div>
This div border color is #B2BBCA.
.myOpacity80 { color: #B2BBCA; opacity: 0.8; }
<p style="color:#B2BBCA;opacity:0.8;">80%</p>
Text with #B2BBCA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B2BBCA;}
<p style="text-shadow: 3px 3px 1px #B2BBCA">Text here.</p>
This text has shadow with #B2BBCA color.
.textShadow {text-shadow: 3px 3px 1px #B2BBCA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B2BBCA, 5px 5px 20px red">Text here.</p>
This text has shadow with #B2BBCA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B2BBCA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B2BBCA, Direction=45, Strength=4)">Text</p>
This text has shadow with #B2BBCA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B2BBCA; -webkit-box-shadow: 1px 1px 3px 2px #B2BBCA; box-shadow: 1px 1px 3px 2px #B2BBCA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B2BBCA; -webkit-box-shadow: 1px 1px 3px 2px #B2BBCA; box-shadow:1px 1px 3px 2px #B2BBCA;">
Div content here</div>
This text has color #B2BBCA on black background.
This text has color #B2BBCA on white background.
This text has black color on #B2BBCA background.
This text has white color on #B2BBCA background.