HEX: #BBC6BE
RGB: (187,198,190)
#BBC6BE contains red, green and blue colors in about the same proportion. Web safe color of #BBC6BE is #CCCCCC (or #CCC).
#BBC6BE color RGB value is (187,198,190).
RGB: (187,198,190) (73%,78%,75%)
R 187 of 255 = 73%
G 198 of 255 = 78%
B 190 of 255 = 75%
R + G + B ~ 75%. #BBC6BE is quite light color.
R + G + B =
187 + 198 + 190 = 575 (100%)
R 187 of 575 ~ 32.52%
G 198 of 575 ~ 34.43%
B 190 of 575 ~ 33.04%
#BBC6BE color CMYK value is (6,0,4,22).
CMYK: (6,0,4,22) C6M0Y4K22 (6%,0%,4%,22%) (0.06/0.00/0.04/0.22)
BB | C6 | BE | |
---|---|---|---|
RGB | 187 | 198 | 190 |
HSL | 136° | 8.80% | 75.49% |
HSB/HSV | 136° | 5.56% | 77.65% |
CMYK | 5.56% | 0.00% | 4.04% |
22.35% |
HEX | BB | C6 | BE |
Decimal | 187 | 198 | 190 |
Binary | 10111011 | 11000110 | 10111110 |
Octal | 273 | 306 | 276 |
Examples of css and html codes for elements with #BBC6BE color. Also use rgb(187,198,190) instead hex code.
.myTextColor { color: #BBC6BE; }
<p style="color:#BBC6BE">This sample text font color is #BBC6BE.</p>
This text font color is #BBC6BE.
.myBgColor { background-color: #BBC6BE; }
<div style="background-color:#BBC6BE">Inner text</div>
This div background color is #BBC6BE.
.myBorderColor { border: 1px solid #BBC6BE; }
<div style="border:3px solid #BBC6BE">Div</div>
This div border color is #BBC6BE.
.myOpacity80 { color: #BBC6BE; opacity: 0.8; }
<p style="color:#BBC6BE;opacity:0.8;">80%</p>
Text with #BBC6BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBC6BE;}
<p style="text-shadow: 3px 3px 1px #BBC6BE">Text here.</p>
This text has shadow with #BBC6BE color.
.textShadow {text-shadow: 3px 3px 1px #BBC6BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBC6BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBC6BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBC6BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBC6BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBC6BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBC6BE; -webkit-box-shadow: 1px 1px 3px 2px #BBC6BE; box-shadow: 1px 1px 3px 2px #BBC6BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBC6BE; -webkit-box-shadow: 1px 1px 3px 2px #BBC6BE; box-shadow:1px 1px 3px 2px #BBC6BE;">
Div content here</div>
This text has color #BBC6BE on black background.
This text has color #BBC6BE on white background.
This text has black color on #BBC6BE background.
This text has white color on #BBC6BE background.