HEX: #EEEAF9
RGB: (238,234,249)
#EEEAF9 contains red, green and blue colors in about the same proportion. Web safe color of #EEEAF9 is #FFFFFF (or #FFF).
#EEEAF9 color RGB value is (238,234,249).
RGB: (238,234,249) (93%,92%,98%)
R 238 of 255 = 93%
G 234 of 255 = 92%
B 249 of 255 = 98%
R + G + B ~ 94%. #EEEAF9 is light color.
R + G + B =
238 + 234 + 249 = 721 (100%)
R 238 of 721 ~ 33.01%
G 234 of 721 ~ 32.45%
B 249 of 721 ~ 34.54%
#EEEAF9 color CMYK value is (4,6,0,2).
CMYK: (4,6,0,2) C4M6Y0K2 (4%,6%,0%,2%) (0.04/0.06/0.00/0.02)
EE | EA | F9 | |
---|---|---|---|
RGB | 238 | 234 | 249 |
HSL | 256° | 55.56% | 94.71% |
HSB/HSV | 256° | 6.02% | 97.65% |
CMYK | 4.42% | 6.02% | 0.00% |
2.35% |
HEX | EE | EA | F9 |
Decimal | 238 | 234 | 249 |
Binary | 11101110 | 11101010 | 11111001 |
Octal | 356 | 352 | 371 |
Examples of css and html codes for elements with #EEEAF9 color. Also use rgb(238,234,249) instead hex code.
.myTextColor { color: #EEEAF9; }
<p style="color:#EEEAF9">This sample text font color is #EEEAF9.</p>
This text font color is #EEEAF9.
.myBgColor { background-color: #EEEAF9; }
<div style="background-color:#EEEAF9">Inner text</div>
This div background color is #EEEAF9.
.myBorderColor { border: 1px solid #EEEAF9; }
<div style="border:3px solid #EEEAF9">Div</div>
This div border color is #EEEAF9.
.myOpacity80 { color: #EEEAF9; opacity: 0.8; }
<p style="color:#EEEAF9;opacity:0.8;">80%</p>
Text with #EEEAF9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEEAF9;}
<p style="text-shadow: 3px 3px 1px #EEEAF9">Text here.</p>
This text has shadow with #EEEAF9 color.
.textShadow {text-shadow: 3px 3px 1px #EEEAF9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEEAF9, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEEAF9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEEAF9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEEAF9, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEEAF9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEEAF9; -webkit-box-shadow: 1px 1px 3px 2px #EEEAF9; box-shadow: 1px 1px 3px 2px #EEEAF9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEEAF9; -webkit-box-shadow: 1px 1px 3px 2px #EEEAF9; box-shadow:1px 1px 3px 2px #EEEAF9;">
Div content here</div>
This text has color #EEEAF9 on black background.
This text has color #EEEAF9 on white background.
This text has black color on #EEEAF9 background.
This text has white color on #EEEAF9 background.