HEX: #BBF6DA
RGB: (187,246,218)
#BBF6DA contains red, green and blue colors in about the same proportion. Web safe color of #BBF6DA is #CCFFCC (or #CFC).
#BBF6DA color RGB value is (187,246,218).
RGB: (187,246,218) (73%,96%,85%)
R 187 of 255 = 73%
G 246 of 255 = 96%
B 218 of 255 = 85%
R + G + B ~ 85%. #BBF6DA is quite light color.
R + G + B =
187 + 246 + 218 = 651 (100%)
R 187 of 651 ~ 28.73%
G 246 of 651 ~ 37.79%
B 218 of 651 ~ 33.49%
#BBF6DA color CMYK value is (24,0,11,4).
CMYK: (24,0,11,4) C24M0Y11K4 (24%,0%,11%,4%) (0.24/0.00/0.11/0.04)
BB | F6 | DA | |
---|---|---|---|
RGB | 187 | 246 | 218 |
HSL | 152° | 76.62% | 84.90% |
HSB/HSV | 152° | 23.98% | 96.47% |
CMYK | 23.98% | 0.00% | 11.38% |
3.53% |
HEX | BB | F6 | DA |
Decimal | 187 | 246 | 218 |
Binary | 10111011 | 11110110 | 11011010 |
Octal | 273 | 366 | 332 |
Examples of css and html codes for elements with #BBF6DA color. Also use rgb(187,246,218) instead hex code.
.myTextColor { color: #BBF6DA; }
<p style="color:#BBF6DA">This sample text font color is #BBF6DA.</p>
This text font color is #BBF6DA.
.myBgColor { background-color: #BBF6DA; }
<div style="background-color:#BBF6DA">Inner text</div>
This div background color is #BBF6DA.
.myBorderColor { border: 1px solid #BBF6DA; }
<div style="border:3px solid #BBF6DA">Div</div>
This div border color is #BBF6DA.
.myOpacity80 { color: #BBF6DA; opacity: 0.8; }
<p style="color:#BBF6DA;opacity:0.8;">80%</p>
Text with #BBF6DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BBF6DA;}
<p style="text-shadow: 3px 3px 1px #BBF6DA">Text here.</p>
This text has shadow with #BBF6DA color.
.textShadow {text-shadow: 3px 3px 1px #BBF6DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BBF6DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #BBF6DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BBF6DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BBF6DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #BBF6DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BBF6DA; -webkit-box-shadow: 1px 1px 3px 2px #BBF6DA; box-shadow: 1px 1px 3px 2px #BBF6DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BBF6DA; -webkit-box-shadow: 1px 1px 3px 2px #BBF6DA; box-shadow:1px 1px 3px 2px #BBF6DA;">
Div content here</div>
This text has color #BBF6DA on black background.
This text has color #BBF6DA on white background.
This text has black color on #BBF6DA background.
This text has white color on #BBF6DA background.