HEX: #B1BEDF
RGB: (177,190,223)
#B1BEDF contains red, green and blue colors in about the same proportion. Web safe color of #B1BEDF is #99CCCC (or #9CC).
#B1BEDF color RGB value is (177,190,223).
RGB: (177,190,223) (69%,75%,87%)
R 177 of 255 = 69%
G 190 of 255 = 75%
B 223 of 255 = 87%
R + G + B ~ 77%. #B1BEDF is quite light color.
R + G + B =
177 + 190 + 223 = 590 (100%)
R 177 of 590 ~ 30%
G 190 of 590 ~ 32.2%
B 223 of 590 ~ 37.8%
#B1BEDF color CMYK value is (21,15,0,13).
CMYK: (21,15,0,13) C21M15Y0K13 (21%,15%,0%,13%) (0.21/0.15/0.00/0.13)
B1 | BE | DF | |
---|---|---|---|
RGB | 177 | 190 | 223 |
HSL | 223° | 41.82% | 78.43% |
HSB/HSV | 223° | 20.63% | 87.45% |
CMYK | 20.63% | 14.80% | 0.00% |
12.55% |
HEX | B1 | BE | DF |
Decimal | 177 | 190 | 223 |
Binary | 10110001 | 10111110 | 11011111 |
Octal | 261 | 276 | 337 |
Examples of css and html codes for elements with #B1BEDF color. Also use rgb(177,190,223) instead hex code.
.myTextColor { color: #B1BEDF; }
<p style="color:#B1BEDF">This sample text font color is #B1BEDF.</p>
This text font color is #B1BEDF.
.myBgColor { background-color: #B1BEDF; }
<div style="background-color:#B1BEDF">Inner text</div>
This div background color is #B1BEDF.
.myBorderColor { border: 1px solid #B1BEDF; }
<div style="border:3px solid #B1BEDF">Div</div>
This div border color is #B1BEDF.
.myOpacity80 { color: #B1BEDF; opacity: 0.8; }
<p style="color:#B1BEDF;opacity:0.8;">80%</p>
Text with #B1BEDF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B1BEDF;}
<p style="text-shadow: 3px 3px 1px #B1BEDF">Text here.</p>
This text has shadow with #B1BEDF color.
.textShadow {text-shadow: 3px 3px 1px #B1BEDF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B1BEDF, 5px 5px 20px red">Text here.</p>
This text has shadow with #B1BEDF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B1BEDF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B1BEDF, Direction=45, Strength=4)">Text</p>
This text has shadow with #B1BEDF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B1BEDF; -webkit-box-shadow: 1px 1px 3px 2px #B1BEDF; box-shadow: 1px 1px 3px 2px #B1BEDF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B1BEDF; -webkit-box-shadow: 1px 1px 3px 2px #B1BEDF; box-shadow:1px 1px 3px 2px #B1BEDF;">
Div content here</div>
This text has color #B1BEDF on black background.
This text has color #B1BEDF on white background.
This text has black color on #B1BEDF background.
This text has white color on #B1BEDF background.