HEX: #BBE9BC
RGB: (187,233,188)
#BBE9BC contains red, green and blue colors in about the same proportion. Web safe color of #BBE9BC is #CCFFCC (or #CFC).
#BBE9BC color RGB value is (187,233,188).
RGB: (187,233,188) (73%,91%,74%)
R 187 of 255 = 73%
G 233 of 255 = 91%
B 188 of 255 = 74%
R + G + B ~ 79%. #BBE9BC is quite light color.
R + G + B =
187 + 233 + 188 = 608 (100%)
R 187 of 608 ~ 30.76%
G 233 of 608 ~ 38.32%
B 188 of 608 ~ 30.92%
#BBE9BC color CMYK value is (20,0,19,9).
CMYK: (20,0,19,9) C20M0Y19K9 (20%,0%,19%,9%) (0.20/0.00/0.19/0.09)
BB | E9 | BC | |
---|---|---|---|
RGB | 187 | 233 | 188 |
HSL | 121° | 51.11% | 82.35% |
HSB/HSV | 121° | 19.74% | 91.37% |
CMYK | 19.74% | 0.00% | 19.31% |
8.63% |
HEX | BB | E9 | BC |
Decimal | 187 | 233 | 188 |
Binary | 10111011 | 11101001 | 10111100 |
Octal | 273 | 351 | 274 |
Examples of css and html codes for elements with #BBE9BC color. Also use rgb(187,233,188) instead hex code.
.myTextColor { color: #BBE9BC; }
<p style="color:#BBE9BC">This sample text font color is #BBE9BC.</p>
This text font color is #BBE9BC.
.myBgColor { background-color: #BBE9BC; }
<div style="background-color:#BBE9BC">Inner text</div>
This div background color is #BBE9BC.
.myBorderColor { border: 1px solid #BBE9BC; }
<div style="border:3px solid #BBE9BC">Div</div>
This div border color is #BBE9BC.
.myOpacity80 { color: #BBE9BC; opacity: 0.8; }
<p style="color:#BBE9BC;opacity:0.8;">80%</p>
Text with #BBE9BC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBE9BC;}
<p style="text-shadow: 3px 3px 1px #BBE9BC">Text here.</p>
This text has shadow with #BBE9BC color.
.textShadow {text-shadow: 3px 3px 1px #BBE9BC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBE9BC, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBE9BC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBE9BC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBE9BC, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBE9BC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBE9BC; -webkit-box-shadow: 1px 1px 3px 2px #BBE9BC; box-shadow: 1px 1px 3px 2px #BBE9BC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBE9BC; -webkit-box-shadow: 1px 1px 3px 2px #BBE9BC; box-shadow:1px 1px 3px 2px #BBE9BC;">
Div content here</div>
This text has color #BBE9BC on black background.
This text has color #BBE9BC on white background.
This text has black color on #BBE9BC background.
This text has white color on #BBE9BC background.