HEX: #BBB7BB
RGB: (187,183,187)
#BBB7BB contains red, green and blue colors in about the same proportion. Web safe color of #BBB7BB is #CCCCCC (or #CCC).
#BBB7BB color RGB value is (187,183,187).
RGB: (187,183,187) (73%,72%,73%)
R 187 of 255 = 73%
G 183 of 255 = 72%
B 187 of 255 = 73%
R + G + B ~ 73%. #BBB7BB is quite light color.
R + G + B =
187 + 183 + 187 = 557 (100%)
R 187 of 557 ~ 33.57%
G 183 of 557 ~ 32.85%
B 187 of 557 ~ 33.57%
#BBB7BB color CMYK value is (0,2,0,27).
CMYK: (0,2,0,27) C0M2Y0K27 (0%,2%,0%,27%) (0.00/0.02/0.00/0.27)
BB | B7 | BB | |
---|---|---|---|
RGB | 187 | 183 | 187 |
HSL | 300° | 2.86% | 72.55% |
HSB/HSV | 300° | 2.14% | 73.33% |
CMYK | 0.00% | 2.14% | 0.00% |
26.67% |
HEX | BB | B7 | BB |
Decimal | 187 | 183 | 187 |
Binary | 10111011 | 10110111 | 10111011 |
Octal | 273 | 267 | 273 |
Examples of css and html codes for elements with #BBB7BB color. Also use rgb(187,183,187) instead hex code.
.myTextColor { color: #BBB7BB; }
<p style="color:#BBB7BB">This sample text font color is #BBB7BB.</p>
This text font color is #BBB7BB.
.myBgColor { background-color: #BBB7BB; }
<div style="background-color:#BBB7BB">Inner text</div>
This div background color is #BBB7BB.
.myBorderColor { border: 1px solid #BBB7BB; }
<div style="border:3px solid #BBB7BB">Div</div>
This div border color is #BBB7BB.
.myOpacity80 { color: #BBB7BB; opacity: 0.8; }
<p style="color:#BBB7BB;opacity:0.8;">80%</p>
Text with #BBB7BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBB7BB;}
<p style="text-shadow: 3px 3px 1px #BBB7BB">Text here.</p>
This text has shadow with #BBB7BB color.
.textShadow {text-shadow: 3px 3px 1px #BBB7BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBB7BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBB7BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBB7BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBB7BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBB7BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBB7BB; -webkit-box-shadow: 1px 1px 3px 2px #BBB7BB; box-shadow: 1px 1px 3px 2px #BBB7BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBB7BB; -webkit-box-shadow: 1px 1px 3px 2px #BBB7BB; box-shadow:1px 1px 3px 2px #BBB7BB;">
Div content here</div>
This text has color #BBB7BB on black background.
This text has color #BBB7BB on white background.
This text has black color on #BBB7BB background.
This text has white color on #BBB7BB background.