HEX: #B1C8DE
RGB: (177,200,222)
#B1C8DE contains red, green and blue colors in about the same proportion. Web safe color of #B1C8DE is #99CCCC (or #9CC).
#B1C8DE color RGB value is (177,200,222).
RGB: (177,200,222) (69%,78%,87%)
R 177 of 255 = 69%
G 200 of 255 = 78%
B 222 of 255 = 87%
R + G + B ~ 78%. #B1C8DE is quite light color.
R + G + B =
177 + 200 + 222 = 599 (100%)
R 177 of 599 ~ 29.55%
G 200 of 599 ~ 33.39%
B 222 of 599 ~ 37.06%
#B1C8DE color CMYK value is (20,10,0,13).
CMYK: (20,10,0,13) C20M10Y0K13 (20%,10%,0%,13%) (0.20/0.10/0.00/0.13)
B1 | C8 | DE | |
---|---|---|---|
RGB | 177 | 200 | 222 |
HSL | 209° | 40.54% | 78.24% |
HSB/HSV | 209° | 20.27% | 87.06% |
CMYK | 20.27% | 9.91% | 0.00% |
12.94% |
HEX | B1 | C8 | DE |
Decimal | 177 | 200 | 222 |
Binary | 10110001 | 11001000 | 11011110 |
Octal | 261 | 310 | 336 |
Examples of css and html codes for elements with #B1C8DE color. Also use rgb(177,200,222) instead hex code.
.myTextColor { color: #B1C8DE; }
<p style="color:#B1C8DE">This sample text font color is #B1C8DE.</p>
This text font color is #B1C8DE.
.myBgColor { background-color: #B1C8DE; }
<div style="background-color:#B1C8DE">Inner text</div>
This div background color is #B1C8DE.
.myBorderColor { border: 1px solid #B1C8DE; }
<div style="border:3px solid #B1C8DE">Div</div>
This div border color is #B1C8DE.
.myOpacity80 { color: #B1C8DE; opacity: 0.8; }
<p style="color:#B1C8DE;opacity:0.8;">80%</p>
Text with #B1C8DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B1C8DE;}
<p style="text-shadow: 3px 3px 1px #B1C8DE">Text here.</p>
This text has shadow with #B1C8DE color.
.textShadow {text-shadow: 3px 3px 1px #B1C8DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B1C8DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #B1C8DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B1C8DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B1C8DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #B1C8DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B1C8DE; -webkit-box-shadow: 1px 1px 3px 2px #B1C8DE; box-shadow: 1px 1px 3px 2px #B1C8DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B1C8DE; -webkit-box-shadow: 1px 1px 3px 2px #B1C8DE; box-shadow:1px 1px 3px 2px #B1C8DE;">
Div content here</div>
This text has color #B1C8DE on black background.
This text has color #B1C8DE on white background.
This text has black color on #B1C8DE background.
This text has white color on #B1C8DE background.