HEX: #BBEFD4
RGB: (187,239,212)
#BBEFD4 contains red, green and blue colors in about the same proportion. Web safe color of #BBEFD4 is #CCFFCC (or #CFC).
#BBEFD4 color RGB value is (187,239,212).
RGB: (187,239,212) (73%,94%,83%)
R 187 of 255 = 73%
G 239 of 255 = 94%
B 212 of 255 = 83%
R + G + B ~ 83%. #BBEFD4 is quite light color.
R + G + B =
187 + 239 + 212 = 638 (100%)
R 187 of 638 ~ 29.31%
G 239 of 638 ~ 37.46%
B 212 of 638 ~ 33.23%
#BBEFD4 color CMYK value is (22,0,11,6).
CMYK: (22,0,11,6) C22M0Y11K6 (22%,0%,11%,6%) (0.22/0.00/0.11/0.06)
BB | EF | D4 | |
---|---|---|---|
RGB | 187 | 239 | 212 |
HSL | 149° | 61.90% | 83.53% |
HSB/HSV | 149° | 21.76% | 93.73% |
CMYK | 21.76% | 0.00% | 11.30% |
6.27% |
HEX | BB | EF | D4 |
Decimal | 187 | 239 | 212 |
Binary | 10111011 | 11101111 | 11010100 |
Octal | 273 | 357 | 324 |
Examples of css and html codes for elements with #BBEFD4 color. Also use rgb(187,239,212) instead hex code.
.myTextColor { color: #BBEFD4; }
<p style="color:#BBEFD4">This sample text font color is #BBEFD4.</p>
This text font color is #BBEFD4.
.myBgColor { background-color: #BBEFD4; }
<div style="background-color:#BBEFD4">Inner text</div>
This div background color is #BBEFD4.
.myBorderColor { border: 1px solid #BBEFD4; }
<div style="border:3px solid #BBEFD4">Div</div>
This div border color is #BBEFD4.
.myOpacity80 { color: #BBEFD4; opacity: 0.8; }
<p style="color:#BBEFD4;opacity:0.8;">80%</p>
Text with #BBEFD4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBEFD4;}
<p style="text-shadow: 3px 3px 1px #BBEFD4">Text here.</p>
This text has shadow with #BBEFD4 color.
.textShadow {text-shadow: 3px 3px 1px #BBEFD4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBEFD4, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBEFD4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBEFD4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBEFD4, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBEFD4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBEFD4; -webkit-box-shadow: 1px 1px 3px 2px #BBEFD4; box-shadow: 1px 1px 3px 2px #BBEFD4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBEFD4; -webkit-box-shadow: 1px 1px 3px 2px #BBEFD4; box-shadow:1px 1px 3px 2px #BBEFD4;">
Div content here</div>
This text has color #BBEFD4 on black background.
This text has color #BBEFD4 on white background.
This text has black color on #BBEFD4 background.
This text has white color on #BBEFD4 background.