HEX: #EFF1DB
RGB: (239,241,219)
#EFF1DB contains red, green and blue colors in about the same proportion. Web safe color of #EFF1DB is #FFFFCC (or #FFC).
#EFF1DB color RGB value is (239,241,219).
RGB: (239,241,219) (94%,95%,86%)
R 239 of 255 = 94%
G 241 of 255 = 95%
B 219 of 255 = 86%
R + G + B ~ 92%. #EFF1DB is light color.
R + G + B =
239 + 241 + 219 = 699 (100%)
R 239 of 699 ~ 34.19%
G 241 of 699 ~ 34.48%
B 219 of 699 ~ 31.33%
#EFF1DB color CMYK value is (1,0,9,5).
CMYK: (1,0,9,5) C1M0Y9K5 (1%,0%,9%,5%) (0.01/0.00/0.09/0.05)
EF | F1 | DB | |
---|---|---|---|
RGB | 239 | 241 | 219 |
HSL | 65° | 44.00% | 90.20% |
HSB/HSV | 65° | 9.13% | 94.51% |
CMYK | 0.83% | 0.00% | 9.13% |
5.49% |
HEX | EF | F1 | DB |
Decimal | 239 | 241 | 219 |
Binary | 11101111 | 11110001 | 11011011 |
Octal | 357 | 361 | 333 |
Examples of css and html codes for elements with #EFF1DB color. Also use rgb(239,241,219) instead hex code.
.myTextColor { color: #EFF1DB; }
<p style="color:#EFF1DB">This sample text font color is #EFF1DB.</p>
This text font color is #EFF1DB.
.myBgColor { background-color: #EFF1DB; }
<div style="background-color:#EFF1DB">Inner text</div>
This div background color is #EFF1DB.
.myBorderColor { border: 1px solid #EFF1DB; }
<div style="border:3px solid #EFF1DB">Div</div>
This div border color is #EFF1DB.
.myOpacity80 { color: #EFF1DB; opacity: 0.8; }
<p style="color:#EFF1DB;opacity:0.8;">80%</p>
Text with #EFF1DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFF1DB;}
<p style="text-shadow: 3px 3px 1px #EFF1DB">Text here.</p>
This text has shadow with #EFF1DB color.
.textShadow {text-shadow: 3px 3px 1px #EFF1DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFF1DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFF1DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFF1DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFF1DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFF1DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFF1DB; -webkit-box-shadow: 1px 1px 3px 2px #EFF1DB; box-shadow: 1px 1px 3px 2px #EFF1DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFF1DB; -webkit-box-shadow: 1px 1px 3px 2px #EFF1DB; box-shadow:1px 1px 3px 2px #EFF1DB;">
Div content here</div>
This text has color #EFF1DB on black background.
This text has color #EFF1DB on white background.
This text has black color on #EFF1DB background.
This text has white color on #EFF1DB background.