HEX: #B9EBDA
RGB: (185,235,218)
#B9EBDA contains red, green and blue colors in about the same proportion. Web safe color of #B9EBDA is #CCFFCC (or #CFC).
#B9EBDA color RGB value is (185,235,218).
RGB: (185,235,218) (73%,92%,85%)
R 185 of 255 = 73%
G 235 of 255 = 92%
B 218 of 255 = 85%
R + G + B ~ 83%. #B9EBDA is quite light color.
R + G + B =
185 + 235 + 218 = 638 (100%)
R 185 of 638 ~ 29%
G 235 of 638 ~ 36.83%
B 218 of 638 ~ 34.17%
#B9EBDA color CMYK value is (21,0,7,8).
CMYK: (21,0,7,8) C21M0Y7K8 (21%,0%,7%,8%) (0.21/0.00/0.07/0.08)
B9 | EB | DA | |
---|---|---|---|
RGB | 185 | 235 | 218 |
HSL | 160° | 55.56% | 82.35% |
HSB/HSV | 160° | 21.28% | 92.16% |
CMYK | 21.28% | 0.00% | 7.23% |
7.84% |
HEX | B9 | EB | DA |
Decimal | 185 | 235 | 218 |
Binary | 10111001 | 11101011 | 11011010 |
Octal | 271 | 353 | 332 |
Examples of css and html codes for elements with #B9EBDA color. Also use rgb(185,235,218) instead hex code.
.myTextColor { color: #B9EBDA; }
<p style="color:#B9EBDA">This sample text font color is #B9EBDA.</p>
This text font color is #B9EBDA.
.myBgColor { background-color: #B9EBDA; }
<div style="background-color:#B9EBDA">Inner text</div>
This div background color is #B9EBDA.
.myBorderColor { border: 1px solid #B9EBDA; }
<div style="border:3px solid #B9EBDA">Div</div>
This div border color is #B9EBDA.
.myOpacity80 { color: #B9EBDA; opacity: 0.8; }
<p style="color:#B9EBDA;opacity:0.8;">80%</p>
Text with #B9EBDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B9EBDA;}
<p style="text-shadow: 3px 3px 1px #B9EBDA">Text here.</p>
This text has shadow with #B9EBDA color.
.textShadow {text-shadow: 3px 3px 1px #B9EBDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B9EBDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #B9EBDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B9EBDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B9EBDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #B9EBDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B9EBDA; -webkit-box-shadow: 1px 1px 3px 2px #B9EBDA; box-shadow: 1px 1px 3px 2px #B9EBDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B9EBDA; -webkit-box-shadow: 1px 1px 3px 2px #B9EBDA; box-shadow:1px 1px 3px 2px #B9EBDA;">
Div content here</div>
This text has color #B9EBDA on black background.
This text has color #B9EBDA on white background.
This text has black color on #B9EBDA background.
This text has white color on #B9EBDA background.