HEX: #BBC5BB
RGB: (187,197,187)
#BBC5BB contains red, green and blue colors in about the same proportion. Web safe color of #BBC5BB is #CCCCCC (or #CCC).
#BBC5BB color RGB value is (187,197,187).
RGB: (187,197,187) (73%,77%,73%)
R 187 of 255 = 73%
G 197 of 255 = 77%
B 187 of 255 = 73%
R + G + B ~ 74%. #BBC5BB is quite light color.
R + G + B =
187 + 197 + 187 = 571 (100%)
R 187 of 571 ~ 32.75%
G 197 of 571 ~ 34.5%
B 187 of 571 ~ 32.75%
#BBC5BB color CMYK value is (5,0,5,23).
CMYK: (5,0,5,23) C5M0Y5K23 (5%,0%,5%,23%) (0.05/0.00/0.05/0.23)
BB | C5 | BB | |
---|---|---|---|
RGB | 187 | 197 | 187 |
HSL | 120° | 7.94% | 75.29% |
HSB/HSV | 120° | 5.08% | 77.25% |
CMYK | 5.08% | 0.00% | 5.08% |
22.75% |
HEX | BB | C5 | BB |
Decimal | 187 | 197 | 187 |
Binary | 10111011 | 11000101 | 10111011 |
Octal | 273 | 305 | 273 |
Examples of css and html codes for elements with #BBC5BB color. Also use rgb(187,197,187) instead hex code.
.myTextColor { color: #BBC5BB; }
<p style="color:#BBC5BB">This sample text font color is #BBC5BB.</p>
This text font color is #BBC5BB.
.myBgColor { background-color: #BBC5BB; }
<div style="background-color:#BBC5BB">Inner text</div>
This div background color is #BBC5BB.
.myBorderColor { border: 1px solid #BBC5BB; }
<div style="border:3px solid #BBC5BB">Div</div>
This div border color is #BBC5BB.
.myOpacity80 { color: #BBC5BB; opacity: 0.8; }
<p style="color:#BBC5BB;opacity:0.8;">80%</p>
Text with #BBC5BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBC5BB;}
<p style="text-shadow: 3px 3px 1px #BBC5BB">Text here.</p>
This text has shadow with #BBC5BB color.
.textShadow {text-shadow: 3px 3px 1px #BBC5BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBC5BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBC5BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBC5BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBC5BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBC5BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBC5BB; -webkit-box-shadow: 1px 1px 3px 2px #BBC5BB; box-shadow: 1px 1px 3px 2px #BBC5BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBC5BB; -webkit-box-shadow: 1px 1px 3px 2px #BBC5BB; box-shadow:1px 1px 3px 2px #BBC5BB;">
Div content here</div>
This text has color #BBC5BB on black background.
This text has color #BBC5BB on white background.
This text has black color on #BBC5BB background.
This text has white color on #BBC5BB background.