HEX: #9EBAED
RGB: (158,186,237)
#9EBAED contains mainly green and blue colors. Web safe color of #9EBAED is #99CCFF (or #9CF).
#9EBAED color RGB value is (158,186,237).
RGB: (158,186,237) (62%,73%,93%)
R 158 of 255 = 62%
G 186 of 255 = 73%
B 237 of 255 = 93%
R + G + B ~ 76%. #9EBAED is quite light color.
R + G + B =
158 + 186 + 237 = 581 (100%)
R 158 of 581 ~ 27.19%
G 186 of 581 ~ 32.01%
B 237 of 581 ~ 40.79%
#9EBAED color CMYK value is (33,22,0,7).
CMYK: (33,22,0,7) C33M22Y0K7 (33%,22%,0%,7%) (0.33/0.22/0.00/0.07)
9E | BA | ED | |
---|---|---|---|
RGB | 158 | 186 | 237 |
HSL | 219° | 68.70% | 77.45% |
HSB/HSV | 219° | 33.33% | 92.94% |
CMYK | 33.33% | 21.52% | 0.00% |
7.06% |
HEX | 9E | BA | ED |
Decimal | 158 | 186 | 237 |
Binary | 10011110 | 10111010 | 11101101 |
Octal | 236 | 272 | 355 |
Examples of css and html codes for elements with #9EBAED color. Also use rgb(158,186,237) instead hex code.
.myTextColor { color: #9EBAED; }
<p style="color:#9EBAED">This sample text font color is #9EBAED.</p>
This text font color is #9EBAED.
.myBgColor { background-color: #9EBAED; }
<div style="background-color:#9EBAED">Inner text</div>
This div background color is #9EBAED.
.myBorderColor { border: 1px solid #9EBAED; }
<div style="border:3px solid #9EBAED">Div</div>
This div border color is #9EBAED.
.myOpacity80 { color: #9EBAED; opacity: 0.8; }
<p style="color:#9EBAED;opacity:0.8;">80%</p>
Text with #9EBAED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9EBAED;}
<p style="text-shadow: 3px 3px 1px #9EBAED">Text here.</p>
This text has shadow with #9EBAED color.
.textShadow {text-shadow: 3px 3px 1px #9EBAED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9EBAED, 5px 5px 20px red">Text here.</p>
This text has shadow with #9EBAED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9EBAED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9EBAED, Direction=45, Strength=4)">Text</p>
This text has shadow with #9EBAED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9EBAED; -webkit-box-shadow: 1px 1px 3px 2px #9EBAED; box-shadow: 1px 1px 3px 2px #9EBAED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9EBAED; -webkit-box-shadow: 1px 1px 3px 2px #9EBAED; box-shadow:1px 1px 3px 2px #9EBAED;">
Div content here</div>
This text has color #9EBAED on black background.
This text has color #9EBAED on white background.
This text has black color on #9EBAED background.
This text has white color on #9EBAED background.