HEX: #B9EAFF
RGB: (185,234,255)
#B9EAFF contains mainly green and blue colors. Web safe color of #B9EAFF is #CCFFFF (or #CFF).
#B9EAFF color RGB value is (185,234,255).
RGB: (185,234,255) (73%,92%,100%)
R 185 of 255 = 73%
G 234 of 255 = 92%
B 255 of 255 = 100%
R + G + B ~ 88%. #B9EAFF is light color.
R + G + B =
185 + 234 + 255 = 674 (100%)
R 185 of 674 ~ 27.45%
G 234 of 674 ~ 34.72%
B 255 of 674 ~ 37.83%
#B9EAFF color CMYK value is (27,8,0,0).
CMYK: (27,8,0,0) C27M8Y0K0 (27%,8%,0%,0%) (0.27/0.08/0.00/0.00)
B9 | EA | FF | |
---|---|---|---|
RGB | 185 | 234 | 255 |
HSL | 198° | 100.00% | 86.27% |
HSB/HSV | 198° | 27.45% | 100.00% |
CMYK | 27.45% | 8.24% | 0.00% |
0.00% |
HEX | B9 | EA | FF |
Decimal | 185 | 234 | 255 |
Binary | 10111001 | 11101010 | 11111111 |
Octal | 271 | 352 | 377 |
Examples of css and html codes for elements with #B9EAFF color. Also use rgb(185,234,255) instead hex code.
.myTextColor { color: #B9EAFF; }
<p style="color:#B9EAFF">This sample text font color is #B9EAFF.</p>
This text font color is #B9EAFF.
.myBgColor { background-color: #B9EAFF; }
<div style="background-color:#B9EAFF">Inner text</div>
This div background color is #B9EAFF.
.myBorderColor { border: 1px solid #B9EAFF; }
<div style="border:3px solid #B9EAFF">Div</div>
This div border color is #B9EAFF.
.myOpacity80 { color: #B9EAFF; opacity: 0.8; }
<p style="color:#B9EAFF;opacity:0.8;">80%</p>
Text with #B9EAFF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B9EAFF;}
<p style="text-shadow: 3px 3px 1px #B9EAFF">Text here.</p>
This text has shadow with #B9EAFF color.
.textShadow {text-shadow: 3px 3px 1px #B9EAFF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B9EAFF, 5px 5px 20px red">Text here.</p>
This text has shadow with #B9EAFF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B9EAFF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B9EAFF, Direction=45, Strength=4)">Text</p>
This text has shadow with #B9EAFF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B9EAFF; -webkit-box-shadow: 1px 1px 3px 2px #B9EAFF; box-shadow: 1px 1px 3px 2px #B9EAFF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B9EAFF; -webkit-box-shadow: 1px 1px 3px 2px #B9EAFF; box-shadow:1px 1px 3px 2px #B9EAFF;">
Div content here</div>
This text has color #B9EAFF on black background.
This text has color #B9EAFF on white background.
This text has black color on #B9EAFF background.
This text has white color on #B9EAFF background.