HEX: #B9E5BC
RGB: (185,229,188)
#B9E5BC contains red, green and blue colors in about the same proportion. Web safe color of #B9E5BC is #CCCCCC (or #CCC).
#B9E5BC color RGB value is (185,229,188).
RGB: (185,229,188) (73%,90%,74%)
R 185 of 255 = 73%
G 229 of 255 = 90%
B 188 of 255 = 74%
R + G + B ~ 79%. #B9E5BC is quite light color.
R + G + B =
185 + 229 + 188 = 602 (100%)
R 185 of 602 ~ 30.73%
G 229 of 602 ~ 38.04%
B 188 of 602 ~ 31.23%
#B9E5BC color CMYK value is (19,0,18,10).
CMYK: (19,0,18,10) C19M0Y18K10 (19%,0%,18%,10%) (0.19/0.00/0.18/0.10)
B9 | E5 | BC | |
---|---|---|---|
RGB | 185 | 229 | 188 |
HSL | 124° | 45.83% | 81.18% |
HSB/HSV | 124° | 19.21% | 89.80% |
CMYK | 19.21% | 0.00% | 17.90% |
10.20% |
HEX | B9 | E5 | BC |
Decimal | 185 | 229 | 188 |
Binary | 10111001 | 11100101 | 10111100 |
Octal | 271 | 345 | 274 |
Examples of css and html codes for elements with #B9E5BC color. Also use rgb(185,229,188) instead hex code.
.myTextColor { color: #B9E5BC; }
<p style="color:#B9E5BC">This sample text font color is #B9E5BC.</p>
This text font color is #B9E5BC.
.myBgColor { background-color: #B9E5BC; }
<div style="background-color:#B9E5BC">Inner text</div>
This div background color is #B9E5BC.
.myBorderColor { border: 1px solid #B9E5BC; }
<div style="border:3px solid #B9E5BC">Div</div>
This div border color is #B9E5BC.
.myOpacity80 { color: #B9E5BC; opacity: 0.8; }
<p style="color:#B9E5BC;opacity:0.8;">80%</p>
Text with #B9E5BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B9E5BC;}
<p style="text-shadow: 3px 3px 1px #B9E5BC">Text here.</p>
This text has shadow with #B9E5BC color.
.textShadow {text-shadow: 3px 3px 1px #B9E5BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B9E5BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #B9E5BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B9E5BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B9E5BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #B9E5BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B9E5BC; -webkit-box-shadow: 1px 1px 3px 2px #B9E5BC; box-shadow: 1px 1px 3px 2px #B9E5BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B9E5BC; -webkit-box-shadow: 1px 1px 3px 2px #B9E5BC; box-shadow:1px 1px 3px 2px #B9E5BC;">
Div content here</div>
This text has color #B9E5BC on black background.
This text has color #B9E5BC on white background.
This text has black color on #B9E5BC background.
This text has white color on #B9E5BC background.