HEX: #EFF4DE
RGB: (239,244,222)
#EFF4DE contains red, green and blue colors in about the same proportion. Web safe color of #EFF4DE is #FFFFCC (or #FFC).
#EFF4DE color RGB value is (239,244,222).
RGB: (239,244,222) (94%,96%,87%)
R 239 of 255 = 94%
G 244 of 255 = 96%
B 222 of 255 = 87%
R + G + B ~ 92%. #EFF4DE is light color.
R + G + B =
239 + 244 + 222 = 705 (100%)
R 239 of 705 ~ 33.9%
G 244 of 705 ~ 34.61%
B 222 of 705 ~ 31.49%
#EFF4DE color CMYK value is (2,0,9,4).
CMYK: (2,0,9,4) C2M0Y9K4 (2%,0%,9%,4%) (0.02/0.00/0.09/0.04)
EF | F4 | DE | |
---|---|---|---|
RGB | 239 | 244 | 222 |
HSL | 74° | 50.00% | 91.37% |
HSB/HSV | 74° | 9.02% | 95.69% |
CMYK | 2.05% | 0.00% | 9.02% |
4.31% |
HEX | EF | F4 | DE |
Decimal | 239 | 244 | 222 |
Binary | 11101111 | 11110100 | 11011110 |
Octal | 357 | 364 | 336 |
Examples of css and html codes for elements with #EFF4DE color. Also use rgb(239,244,222) instead hex code.
.myTextColor { color: #EFF4DE; }
<p style="color:#EFF4DE">This sample text font color is #EFF4DE.</p>
This text font color is #EFF4DE.
.myBgColor { background-color: #EFF4DE; }
<div style="background-color:#EFF4DE">Inner text</div>
This div background color is #EFF4DE.
.myBorderColor { border: 1px solid #EFF4DE; }
<div style="border:3px solid #EFF4DE">Div</div>
This div border color is #EFF4DE.
.myOpacity80 { color: #EFF4DE; opacity: 0.8; }
<p style="color:#EFF4DE;opacity:0.8;">80%</p>
Text with #EFF4DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFF4DE;}
<p style="text-shadow: 3px 3px 1px #EFF4DE">Text here.</p>
This text has shadow with #EFF4DE color.
.textShadow {text-shadow: 3px 3px 1px #EFF4DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFF4DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFF4DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFF4DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFF4DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFF4DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFF4DE; -webkit-box-shadow: 1px 1px 3px 2px #EFF4DE; box-shadow: 1px 1px 3px 2px #EFF4DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFF4DE; -webkit-box-shadow: 1px 1px 3px 2px #EFF4DE; box-shadow:1px 1px 3px 2px #EFF4DE;">
Div content here</div>
This text has color #EFF4DE on black background.
This text has color #EFF4DE on white background.
This text has black color on #EFF4DE background.
This text has white color on #EFF4DE background.