HEX: #9EAFE1
RGB: (158,175,225)
#9EAFE1 contains mainly green and blue colors. Web safe color of #9EAFE1 is #9999CC (or #99C).
#9EAFE1 color RGB value is (158,175,225).
RGB: (158,175,225) (62%,69%,88%)
R 158 of 255 = 62%
G 175 of 255 = 69%
B 225 of 255 = 88%
R + G + B ~ 73%. #9EAFE1 is quite light color.
R + G + B =
158 + 175 + 225 = 558 (100%)
R 158 of 558 ~ 28.32%
G 175 of 558 ~ 31.36%
B 225 of 558 ~ 40.32%
#9EAFE1 color CMYK value is (30,22,0,12).
CMYK: (30,22,0,12) C30M22Y0K12 (30%,22%,0%,12%) (0.30/0.22/0.00/0.12)
9E | AF | E1 | |
---|---|---|---|
RGB | 158 | 175 | 225 |
HSL | 225° | 52.76% | 75.10% |
HSB/HSV | 225° | 29.78% | 88.24% |
CMYK | 29.78% | 22.22% | 0.00% |
11.76% |
HEX | 9E | AF | E1 |
Decimal | 158 | 175 | 225 |
Binary | 10011110 | 10101111 | 11100001 |
Octal | 236 | 257 | 341 |
Examples of css and html codes for elements with #9EAFE1 color. Also use rgb(158,175,225) instead hex code.
.myTextColor { color: #9EAFE1; }
<p style="color:#9EAFE1">This sample text font color is #9EAFE1.</p>
This text font color is #9EAFE1.
.myBgColor { background-color: #9EAFE1; }
<div style="background-color:#9EAFE1">Inner text</div>
This div background color is #9EAFE1.
.myBorderColor { border: 1px solid #9EAFE1; }
<div style="border:3px solid #9EAFE1">Div</div>
This div border color is #9EAFE1.
.myOpacity80 { color: #9EAFE1; opacity: 0.8; }
<p style="color:#9EAFE1;opacity:0.8;">80%</p>
Text with #9EAFE1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9EAFE1;}
<p style="text-shadow: 3px 3px 1px #9EAFE1">Text here.</p>
This text has shadow with #9EAFE1 color.
.textShadow {text-shadow: 3px 3px 1px #9EAFE1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9EAFE1, 5px 5px 20px red">Text here.</p>
This text has shadow with #9EAFE1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9EAFE1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9EAFE1, Direction=45, Strength=4)">Text</p>
This text has shadow with #9EAFE1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9EAFE1; -webkit-box-shadow: 1px 1px 3px 2px #9EAFE1; box-shadow: 1px 1px 3px 2px #9EAFE1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9EAFE1; -webkit-box-shadow: 1px 1px 3px 2px #9EAFE1; box-shadow:1px 1px 3px 2px #9EAFE1;">
Div content here</div>
This text has color #9EAFE1 on black background.
This text has color #9EAFE1 on white background.
This text has black color on #9EAFE1 background.
This text has white color on #9EAFE1 background.