HEX: #BBC2DB
RGB: (187,194,219)
#BBC2DB contains red, green and blue colors in about the same proportion. Web safe color of #BBC2DB is #CCCCCC (or #CCC).
#BBC2DB color RGB value is (187,194,219).
RGB: (187,194,219) (73%,76%,86%)
R 187 of 255 = 73%
G 194 of 255 = 76%
B 219 of 255 = 86%
R + G + B ~ 78%. #BBC2DB is quite light color.
R + G + B =
187 + 194 + 219 = 600 (100%)
R 187 of 600 ~ 31.17%
G 194 of 600 ~ 32.33%
B 219 of 600 ~ 36.5%
#BBC2DB color CMYK value is (15,11,0,14).
CMYK: (15,11,0,14) C15M11Y0K14 (15%,11%,0%,14%) (0.15/0.11/0.00/0.14)
BB | C2 | DB | |
---|---|---|---|
RGB | 187 | 194 | 219 |
HSL | 227° | 30.77% | 79.61% |
HSB/HSV | 227° | 14.61% | 85.88% |
CMYK | 14.61% | 11.42% | 0.00% |
14.12% |
HEX | BB | C2 | DB |
Decimal | 187 | 194 | 219 |
Binary | 10111011 | 11000010 | 11011011 |
Octal | 273 | 302 | 333 |
Examples of css and html codes for elements with #BBC2DB color. Also use rgb(187,194,219) instead hex code.
.myTextColor { color: #BBC2DB; }
<p style="color:#BBC2DB">This sample text font color is #BBC2DB.</p>
This text font color is #BBC2DB.
.myBgColor { background-color: #BBC2DB; }
<div style="background-color:#BBC2DB">Inner text</div>
This div background color is #BBC2DB.
.myBorderColor { border: 1px solid #BBC2DB; }
<div style="border:3px solid #BBC2DB">Div</div>
This div border color is #BBC2DB.
.myOpacity80 { color: #BBC2DB; opacity: 0.8; }
<p style="color:#BBC2DB;opacity:0.8;">80%</p>
Text with #BBC2DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBC2DB;}
<p style="text-shadow: 3px 3px 1px #BBC2DB">Text here.</p>
This text has shadow with #BBC2DB color.
.textShadow {text-shadow: 3px 3px 1px #BBC2DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBC2DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBC2DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBC2DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBC2DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBC2DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBC2DB; -webkit-box-shadow: 1px 1px 3px 2px #BBC2DB; box-shadow: 1px 1px 3px 2px #BBC2DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBC2DB; -webkit-box-shadow: 1px 1px 3px 2px #BBC2DB; box-shadow:1px 1px 3px 2px #BBC2DB;">
Div content here</div>
This text has color #BBC2DB on black background.
This text has color #BBC2DB on white background.
This text has black color on #BBC2DB background.
This text has white color on #BBC2DB background.