HEX: #BBC5CB
RGB: (187,197,203)
#BBC5CB contains red, green and blue colors in about the same proportion. Web safe color of #BBC5CB is #CCCCCC (or #CCC).
#BBC5CB color RGB value is (187,197,203).
RGB: (187,197,203) (73%,77%,80%)
R 187 of 255 = 73%
G 197 of 255 = 77%
B 203 of 255 = 80%
R + G + B ~ 77%. #BBC5CB is quite light color.
R + G + B =
187 + 197 + 203 = 587 (100%)
R 187 of 587 ~ 31.86%
G 197 of 587 ~ 33.56%
B 203 of 587 ~ 34.58%
#BBC5CB color CMYK value is (8,3,0,20).
CMYK: (8,3,0,20) C8M3Y0K20 (8%,3%,0%,20%) (0.08/0.03/0.00/0.20)
BB | C5 | CB | |
---|---|---|---|
RGB | 187 | 197 | 203 |
HSL | 203° | 13.33% | 76.47% |
HSB/HSV | 203° | 7.88% | 79.61% |
CMYK | 7.88% | 2.96% | 0.00% |
20.39% |
HEX | BB | C5 | CB |
Decimal | 187 | 197 | 203 |
Binary | 10111011 | 11000101 | 11001011 |
Octal | 273 | 305 | 313 |
Examples of css and html codes for elements with #BBC5CB color. Also use rgb(187,197,203) instead hex code.
.myTextColor { color: #BBC5CB; }
<p style="color:#BBC5CB">This sample text font color is #BBC5CB.</p>
This text font color is #BBC5CB.
.myBgColor { background-color: #BBC5CB; }
<div style="background-color:#BBC5CB">Inner text</div>
This div background color is #BBC5CB.
.myBorderColor { border: 1px solid #BBC5CB; }
<div style="border:3px solid #BBC5CB">Div</div>
This div border color is #BBC5CB.
.myOpacity80 { color: #BBC5CB; opacity: 0.8; }
<p style="color:#BBC5CB;opacity:0.8;">80%</p>
Text with #BBC5CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBC5CB;}
<p style="text-shadow: 3px 3px 1px #BBC5CB">Text here.</p>
This text has shadow with #BBC5CB color.
.textShadow {text-shadow: 3px 3px 1px #BBC5CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBC5CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBC5CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBC5CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBC5CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBC5CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBC5CB; -webkit-box-shadow: 1px 1px 3px 2px #BBC5CB; box-shadow: 1px 1px 3px 2px #BBC5CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBC5CB; -webkit-box-shadow: 1px 1px 3px 2px #BBC5CB; box-shadow:1px 1px 3px 2px #BBC5CB;">
Div content here</div>
This text has color #BBC5CB on black background.
This text has color #BBC5CB on white background.
This text has black color on #BBC5CB background.
This text has white color on #BBC5CB background.