HEX: #B1CBDB
RGB: (177,203,219)
#B1CBDB contains red, green and blue colors in about the same proportion. Web safe color of #B1CBDB is #99CCCC (or #9CC).
#B1CBDB color RGB value is (177,203,219).
RGB: (177,203,219) (69%,80%,86%)
R 177 of 255 = 69%
G 203 of 255 = 80%
B 219 of 255 = 86%
R + G + B ~ 78%. #B1CBDB is quite light color.
R + G + B =
177 + 203 + 219 = 599 (100%)
R 177 of 599 ~ 29.55%
G 203 of 599 ~ 33.89%
B 219 of 599 ~ 36.56%
#B1CBDB color CMYK value is (19,7,0,14).
CMYK: (19,7,0,14) C19M7Y0K14 (19%,7%,0%,14%) (0.19/0.07/0.00/0.14)
B1 | CB | DB | |
---|---|---|---|
RGB | 177 | 203 | 219 |
HSL | 203° | 36.84% | 77.65% |
HSB/HSV | 203° | 19.18% | 85.88% |
CMYK | 19.18% | 7.31% | 0.00% |
14.12% |
HEX | B1 | CB | DB |
Decimal | 177 | 203 | 219 |
Binary | 10110001 | 11001011 | 11011011 |
Octal | 261 | 313 | 333 |
Examples of css and html codes for elements with #B1CBDB color. Also use rgb(177,203,219) instead hex code.
.myTextColor { color: #B1CBDB; }
<p style="color:#B1CBDB">This sample text font color is #B1CBDB.</p>
This text font color is #B1CBDB.
.myBgColor { background-color: #B1CBDB; }
<div style="background-color:#B1CBDB">Inner text</div>
This div background color is #B1CBDB.
.myBorderColor { border: 1px solid #B1CBDB; }
<div style="border:3px solid #B1CBDB">Div</div>
This div border color is #B1CBDB.
.myOpacity80 { color: #B1CBDB; opacity: 0.8; }
<p style="color:#B1CBDB;opacity:0.8;">80%</p>
Text with #B1CBDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B1CBDB;}
<p style="text-shadow: 3px 3px 1px #B1CBDB">Text here.</p>
This text has shadow with #B1CBDB color.
.textShadow {text-shadow: 3px 3px 1px #B1CBDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B1CBDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B1CBDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B1CBDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B1CBDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B1CBDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B1CBDB; -webkit-box-shadow: 1px 1px 3px 2px #B1CBDB; box-shadow: 1px 1px 3px 2px #B1CBDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B1CBDB; -webkit-box-shadow: 1px 1px 3px 2px #B1CBDB; box-shadow:1px 1px 3px 2px #B1CBDB;">
Div content here</div>
This text has color #B1CBDB on black background.
This text has color #B1CBDB on white background.
This text has black color on #B1CBDB background.
This text has white color on #B1CBDB background.