HEX: #B0E1BC
RGB: (176,225,188)
#B0E1BC contains red, green and blue colors in about the same proportion. Web safe color of #B0E1BC is #99CCCC (or #9CC).
#B0E1BC color RGB value is (176,225,188).
RGB: (176,225,188) (69%,88%,74%)
R 176 of 255 = 69%
G 225 of 255 = 88%
B 188 of 255 = 74%
R + G + B ~ 77%. #B0E1BC is quite light color.
R + G + B =
176 + 225 + 188 = 589 (100%)
R 176 of 589 ~ 29.88%
G 225 of 589 ~ 38.2%
B 188 of 589 ~ 31.92%
#B0E1BC color CMYK value is (22,0,16,12).
CMYK: (22,0,16,12) C22M0Y16K12 (22%,0%,16%,12%) (0.22/0.00/0.16/0.12)
B0 | E1 | BC | |
---|---|---|---|
RGB | 176 | 225 | 188 |
HSL | 135° | 44.95% | 78.63% |
HSB/HSV | 135° | 21.78% | 88.24% |
CMYK | 21.78% | 0.00% | 16.44% |
11.76% |
HEX | B0 | E1 | BC |
Decimal | 176 | 225 | 188 |
Binary | 10110000 | 11100001 | 10111100 |
Octal | 260 | 341 | 274 |
Examples of css and html codes for elements with #B0E1BC color. Also use rgb(176,225,188) instead hex code.
.myTextColor { color: #B0E1BC; }
<p style="color:#B0E1BC">This sample text font color is #B0E1BC.</p>
This text font color is #B0E1BC.
.myBgColor { background-color: #B0E1BC; }
<div style="background-color:#B0E1BC">Inner text</div>
This div background color is #B0E1BC.
.myBorderColor { border: 1px solid #B0E1BC; }
<div style="border:3px solid #B0E1BC">Div</div>
This div border color is #B0E1BC.
.myOpacity80 { color: #B0E1BC; opacity: 0.8; }
<p style="color:#B0E1BC;opacity:0.8;">80%</p>
Text with #B0E1BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B0E1BC;}
<p style="text-shadow: 3px 3px 1px #B0E1BC">Text here.</p>
This text has shadow with #B0E1BC color.
.textShadow {text-shadow: 3px 3px 1px #B0E1BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B0E1BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #B0E1BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B0E1BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B0E1BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #B0E1BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B0E1BC; -webkit-box-shadow: 1px 1px 3px 2px #B0E1BC; box-shadow: 1px 1px 3px 2px #B0E1BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B0E1BC; -webkit-box-shadow: 1px 1px 3px 2px #B0E1BC; box-shadow:1px 1px 3px 2px #B0E1BC;">
Div content here</div>
This text has color #B0E1BC on black background.
This text has color #B0E1BC on white background.
This text has black color on #B0E1BC background.
This text has white color on #B0E1BC background.