HEX: #BBE7CE
RGB: (187,231,206)
#BBE7CE contains red, green and blue colors in about the same proportion. Web safe color of #BBE7CE is #CCFFCC (or #CFC).
#BBE7CE color RGB value is (187,231,206).
RGB: (187,231,206) (73%,91%,81%)
R 187 of 255 = 73%
G 231 of 255 = 91%
B 206 of 255 = 81%
R + G + B ~ 82%. #BBE7CE is quite light color.
R + G + B =
187 + 231 + 206 = 624 (100%)
R 187 of 624 ~ 29.97%
G 231 of 624 ~ 37.02%
B 206 of 624 ~ 33.01%
#BBE7CE color CMYK value is (19,0,11,9).
CMYK: (19,0,11,9) C19M0Y11K9 (19%,0%,11%,9%) (0.19/0.00/0.11/0.09)
BB | E7 | CE | |
---|---|---|---|
RGB | 187 | 231 | 206 |
HSL | 146° | 47.83% | 81.96% |
HSB/HSV | 146° | 19.05% | 90.59% |
CMYK | 19.05% | 0.00% | 10.82% |
9.41% |
HEX | BB | E7 | CE |
Decimal | 187 | 231 | 206 |
Binary | 10111011 | 11100111 | 11001110 |
Octal | 273 | 347 | 316 |
Examples of css and html codes for elements with #BBE7CE color. Also use rgb(187,231,206) instead hex code.
.myTextColor { color: #BBE7CE; }
<p style="color:#BBE7CE">This sample text font color is #BBE7CE.</p>
This text font color is #BBE7CE.
.myBgColor { background-color: #BBE7CE; }
<div style="background-color:#BBE7CE">Inner text</div>
This div background color is #BBE7CE.
.myBorderColor { border: 1px solid #BBE7CE; }
<div style="border:3px solid #BBE7CE">Div</div>
This div border color is #BBE7CE.
.myOpacity80 { color: #BBE7CE; opacity: 0.8; }
<p style="color:#BBE7CE;opacity:0.8;">80%</p>
Text with #BBE7CE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBE7CE;}
<p style="text-shadow: 3px 3px 1px #BBE7CE">Text here.</p>
This text has shadow with #BBE7CE color.
.textShadow {text-shadow: 3px 3px 1px #BBE7CE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBE7CE, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBE7CE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBE7CE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBE7CE, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBE7CE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBE7CE; -webkit-box-shadow: 1px 1px 3px 2px #BBE7CE; box-shadow: 1px 1px 3px 2px #BBE7CE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBE7CE; -webkit-box-shadow: 1px 1px 3px 2px #BBE7CE; box-shadow:1px 1px 3px 2px #BBE7CE;">
Div content here</div>
This text has color #BBE7CE on black background.
This text has color #BBE7CE on white background.
This text has black color on #BBE7CE background.
This text has white color on #BBE7CE background.