HEX: #EFF2AC
RGB: (239,242,172)
#EFF2AC contains mainly red and green colors. Web safe color of #EFF2AC is #FFFF99 (or #FF9).
#EFF2AC color RGB value is (239,242,172).
RGB: (239,242,172) (94%,95%,67%)
R 239 of 255 = 94%
G 242 of 255 = 95%
B 172 of 255 = 67%
R + G + B ~ 85%. #EFF2AC is quite light color.
R + G + B =
239 + 242 + 172 = 653 (100%)
R 239 of 653 ~ 36.6%
G 242 of 653 ~ 37.06%
B 172 of 653 ~ 26.34%
#EFF2AC color CMYK value is (1,0,29,5).
CMYK: (1,0,29,5) C1M0Y29K5 (1%,0%,29%,5%) (0.01/0.00/0.29/0.05)
EF | F2 | AC | |
---|---|---|---|
RGB | 239 | 242 | 172 |
HSL | 63° | 72.92% | 81.18% |
HSB/HSV | 63° | 28.93% | 94.90% |
CMYK | 1.24% | 0.00% | 28.93% |
5.10% |
HEX | EF | F2 | AC |
Decimal | 239 | 242 | 172 |
Binary | 11101111 | 11110010 | 10101100 |
Octal | 357 | 362 | 254 |
Examples of css and html codes for elements with #EFF2AC color. Also use rgb(239,242,172) instead hex code.
.myTextColor { color: #EFF2AC; }
<p style="color:#EFF2AC">This sample text font color is #EFF2AC.</p>
This text font color is #EFF2AC.
.myBgColor { background-color: #EFF2AC; }
<div style="background-color:#EFF2AC">Inner text</div>
This div background color is #EFF2AC.
.myBorderColor { border: 1px solid #EFF2AC; }
<div style="border:3px solid #EFF2AC">Div</div>
This div border color is #EFF2AC.
.myOpacity80 { color: #EFF2AC; opacity: 0.8; }
<p style="color:#EFF2AC;opacity:0.8;">80%</p>
Text with #EFF2AC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFF2AC;}
<p style="text-shadow: 3px 3px 1px #EFF2AC">Text here.</p>
This text has shadow with #EFF2AC color.
.textShadow {text-shadow: 3px 3px 1px #EFF2AC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFF2AC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFF2AC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFF2AC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFF2AC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFF2AC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFF2AC; -webkit-box-shadow: 1px 1px 3px 2px #EFF2AC; box-shadow: 1px 1px 3px 2px #EFF2AC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFF2AC; -webkit-box-shadow: 1px 1px 3px 2px #EFF2AC; box-shadow:1px 1px 3px 2px #EFF2AC;">
Div content here</div>
This text has color #EFF2AC on black background.
This text has color #EFF2AC on white background.
This text has black color on #EFF2AC background.
This text has white color on #EFF2AC background.