HEX: #EFF2AE
RGB: (239,242,174)
#EFF2AE contains mainly red and green colors. Web safe color of #EFF2AE is #FFFF99 (or #FF9).
#EFF2AE color RGB value is (239,242,174).
RGB: (239,242,174) (94%,95%,68%)
R 239 of 255 = 94%
G 242 of 255 = 95%
B 174 of 255 = 68%
R + G + B ~ 86%. #EFF2AE is light color.
R + G + B =
239 + 242 + 174 = 655 (100%)
R 239 of 655 ~ 36.49%
G 242 of 655 ~ 36.95%
B 174 of 655 ~ 26.56%
#EFF2AE color CMYK value is (1,0,28,5).
CMYK: (1,0,28,5) C1M0Y28K5 (1%,0%,28%,5%) (0.01/0.00/0.28/0.05)
EF | F2 | AE | |
---|---|---|---|
RGB | 239 | 242 | 174 |
HSL | 63° | 72.34% | 81.57% |
HSB/HSV | 63° | 28.10% | 94.90% |
CMYK | 1.24% | 0.00% | 28.10% |
5.10% |
HEX | EF | F2 | AE |
Decimal | 239 | 242 | 174 |
Binary | 11101111 | 11110010 | 10101110 |
Octal | 357 | 362 | 256 |
Examples of css and html codes for elements with #EFF2AE color. Also use rgb(239,242,174) instead hex code.
.myTextColor { color: #EFF2AE; }
<p style="color:#EFF2AE">This sample text font color is #EFF2AE.</p>
This text font color is #EFF2AE.
.myBgColor { background-color: #EFF2AE; }
<div style="background-color:#EFF2AE">Inner text</div>
This div background color is #EFF2AE.
.myBorderColor { border: 1px solid #EFF2AE; }
<div style="border:3px solid #EFF2AE">Div</div>
This div border color is #EFF2AE.
.myOpacity80 { color: #EFF2AE; opacity: 0.8; }
<p style="color:#EFF2AE;opacity:0.8;">80%</p>
Text with #EFF2AE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFF2AE;}
<p style="text-shadow: 3px 3px 1px #EFF2AE">Text here.</p>
This text has shadow with #EFF2AE color.
.textShadow {text-shadow: 3px 3px 1px #EFF2AE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFF2AE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFF2AE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFF2AE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFF2AE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFF2AE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFF2AE; -webkit-box-shadow: 1px 1px 3px 2px #EFF2AE; box-shadow: 1px 1px 3px 2px #EFF2AE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFF2AE; -webkit-box-shadow: 1px 1px 3px 2px #EFF2AE; box-shadow:1px 1px 3px 2px #EFF2AE;">
Div content here</div>
This text has color #EFF2AE on black background.
This text has color #EFF2AE on white background.
This text has black color on #EFF2AE background.
This text has white color on #EFF2AE background.