HEX: #9EA6DA
RGB: (158,166,218)
#9EA6DA contains mainly green and blue colors. Web safe color of #9EA6DA is #9999CC (or #99C).
#9EA6DA color RGB value is (158,166,218).
RGB: (158,166,218) (62%,65%,85%)
R 158 of 255 = 62%
G 166 of 255 = 65%
B 218 of 255 = 85%
R + G + B ~ 71%. #9EA6DA is quite light color.
R + G + B =
158 + 166 + 218 = 542 (100%)
R 158 of 542 ~ 29.15%
G 166 of 542 ~ 30.63%
B 218 of 542 ~ 40.22%
#9EA6DA color CMYK value is (28,24,0,15).
CMYK: (28,24,0,15) C28M24Y0K15 (28%,24%,0%,15%) (0.28/0.24/0.00/0.15)
9E | A6 | DA | |
---|---|---|---|
RGB | 158 | 166 | 218 |
HSL | 232° | 44.78% | 73.73% |
HSB/HSV | 232° | 27.52% | 85.49% |
CMYK | 27.52% | 23.85% | 0.00% |
14.51% |
HEX | 9E | A6 | DA |
Decimal | 158 | 166 | 218 |
Binary | 10011110 | 10100110 | 11011010 |
Octal | 236 | 246 | 332 |
Examples of css and html codes for elements with #9EA6DA color. Also use rgb(158,166,218) instead hex code.
.myTextColor { color: #9EA6DA; }
<p style="color:#9EA6DA">This sample text font color is #9EA6DA.</p>
This text font color is #9EA6DA.
.myBgColor { background-color: #9EA6DA; }
<div style="background-color:#9EA6DA">Inner text</div>
This div background color is #9EA6DA.
.myBorderColor { border: 1px solid #9EA6DA; }
<div style="border:3px solid #9EA6DA">Div</div>
This div border color is #9EA6DA.
.myOpacity80 { color: #9EA6DA; opacity: 0.8; }
<p style="color:#9EA6DA;opacity:0.8;">80%</p>
Text with #9EA6DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9EA6DA;}
<p style="text-shadow: 3px 3px 1px #9EA6DA">Text here.</p>
This text has shadow with #9EA6DA color.
.textShadow {text-shadow: 3px 3px 1px #9EA6DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9EA6DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #9EA6DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9EA6DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9EA6DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #9EA6DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9EA6DA; -webkit-box-shadow: 1px 1px 3px 2px #9EA6DA; box-shadow: 1px 1px 3px 2px #9EA6DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9EA6DA; -webkit-box-shadow: 1px 1px 3px 2px #9EA6DA; box-shadow:1px 1px 3px 2px #9EA6DA;">
Div content here</div>
This text has color #9EA6DA on black background.
This text has color #9EA6DA on white background.
This text has black color on #9EA6DA background.
This text has white color on #9EA6DA background.