HEX: #BBE5CD
RGB: (187,229,205)
#BBE5CD contains red, green and blue colors in about the same proportion. Web safe color of #BBE5CD is #CCCCCC (or #CCC).
#BBE5CD color RGB value is (187,229,205).
RGB: (187,229,205) (73%,90%,80%)
R 187 of 255 = 73%
G 229 of 255 = 90%
B 205 of 255 = 80%
R + G + B ~ 81%. #BBE5CD is quite light color.
R + G + B =
187 + 229 + 205 = 621 (100%)
R 187 of 621 ~ 30.11%
G 229 of 621 ~ 36.88%
B 205 of 621 ~ 33.01%
#BBE5CD color CMYK value is (18,0,10,10).
CMYK: (18,0,10,10) C18M0Y10K10 (18%,0%,10%,10%) (0.18/0.00/0.10/0.10)
BB | E5 | CD | |
---|---|---|---|
RGB | 187 | 229 | 205 |
HSL | 146° | 44.68% | 81.57% |
HSB/HSV | 146° | 18.34% | 89.80% |
CMYK | 18.34% | 0.00% | 10.48% |
10.20% |
HEX | BB | E5 | CD |
Decimal | 187 | 229 | 205 |
Binary | 10111011 | 11100101 | 11001101 |
Octal | 273 | 345 | 315 |
Examples of css and html codes for elements with #BBE5CD color. Also use rgb(187,229,205) instead hex code.
.myTextColor { color: #BBE5CD; }
<p style="color:#BBE5CD">This sample text font color is #BBE5CD.</p>
This text font color is #BBE5CD.
.myBgColor { background-color: #BBE5CD; }
<div style="background-color:#BBE5CD">Inner text</div>
This div background color is #BBE5CD.
.myBorderColor { border: 1px solid #BBE5CD; }
<div style="border:3px solid #BBE5CD">Div</div>
This div border color is #BBE5CD.
.myOpacity80 { color: #BBE5CD; opacity: 0.8; }
<p style="color:#BBE5CD;opacity:0.8;">80%</p>
Text with #BBE5CD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBE5CD;}
<p style="text-shadow: 3px 3px 1px #BBE5CD">Text here.</p>
This text has shadow with #BBE5CD color.
.textShadow {text-shadow: 3px 3px 1px #BBE5CD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBE5CD, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBE5CD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBE5CD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBE5CD, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBE5CD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBE5CD; -webkit-box-shadow: 1px 1px 3px 2px #BBE5CD; box-shadow: 1px 1px 3px 2px #BBE5CD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBE5CD; -webkit-box-shadow: 1px 1px 3px 2px #BBE5CD; box-shadow:1px 1px 3px 2px #BBE5CD;">
Div content here</div>
This text has color #BBE5CD on black background.
This text has color #BBE5CD on white background.
This text has black color on #BBE5CD background.
This text has white color on #BBE5CD background.