HEX: #EFFDDB
RGB: (239,253,219)
#EFFDDB contains red, green and blue colors in about the same proportion. Web safe color of #EFFDDB is #FFFFCC (or #FFC).
#EFFDDB color RGB value is (239,253,219).
RGB: (239,253,219) (94%,99%,86%)
R 239 of 255 = 94%
G 253 of 255 = 99%
B 219 of 255 = 86%
R + G + B ~ 93%. #EFFDDB is light color.
R + G + B =
239 + 253 + 219 = 711 (100%)
R 239 of 711 ~ 33.61%
G 253 of 711 ~ 35.58%
B 219 of 711 ~ 30.8%
#EFFDDB color CMYK value is (6,0,13,1).
CMYK: (6,0,13,1) C6M0Y13K1 (6%,0%,13%,1%) (0.06/0.00/0.13/0.01)
EF | FD | DB | |
---|---|---|---|
RGB | 239 | 253 | 219 |
HSL | 85° | 89.47% | 92.55% |
HSB/HSV | 85° | 13.44% | 99.22% |
CMYK | 5.53% | 0.00% | 13.44% |
0.78% |
HEX | EF | FD | DB |
Decimal | 239 | 253 | 219 |
Binary | 11101111 | 11111101 | 11011011 |
Octal | 357 | 375 | 333 |
Examples of css and html codes for elements with #EFFDDB color. Also use rgb(239,253,219) instead hex code.
.myTextColor { color: #EFFDDB; }
<p style="color:#EFFDDB">This sample text font color is #EFFDDB.</p>
This text font color is #EFFDDB.
.myBgColor { background-color: #EFFDDB; }
<div style="background-color:#EFFDDB">Inner text</div>
This div background color is #EFFDDB.
.myBorderColor { border: 1px solid #EFFDDB; }
<div style="border:3px solid #EFFDDB">Div</div>
This div border color is #EFFDDB.
.myOpacity80 { color: #EFFDDB; opacity: 0.8; }
<p style="color:#EFFDDB;opacity:0.8;">80%</p>
Text with #EFFDDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFFDDB;}
<p style="text-shadow: 3px 3px 1px #EFFDDB">Text here.</p>
This text has shadow with #EFFDDB color.
.textShadow {text-shadow: 3px 3px 1px #EFFDDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFFDDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFFDDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFFDDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFFDDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFFDDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFFDDB; -webkit-box-shadow: 1px 1px 3px 2px #EFFDDB; box-shadow: 1px 1px 3px 2px #EFFDDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFFDDB; -webkit-box-shadow: 1px 1px 3px 2px #EFFDDB; box-shadow:1px 1px 3px 2px #EFFDDB;">
Div content here</div>
This text has color #EFFDDB on black background.
This text has color #EFFDDB on white background.
This text has black color on #EFFDDB background.
This text has white color on #EFFDDB background.