HEX: #EFFEDB
RGB: (239,254,219)
#EFFEDB contains red, green and blue colors in about the same proportion. Web safe color of #EFFEDB is #FFFFCC (or #FFC).
#EFFEDB color RGB value is (239,254,219).
RGB: (239,254,219) (94%,100%,86%)
R 239 of 255 = 94%
G 254 of 255 = 100%
B 219 of 255 = 86%
R + G + B ~ 93%. #EFFEDB is light color.
R + G + B =
239 + 254 + 219 = 712 (100%)
R 239 of 712 ~ 33.57%
G 254 of 712 ~ 35.67%
B 219 of 712 ~ 30.76%
#EFFEDB color CMYK value is (6,0,14,0).
CMYK: (6,0,14,0) C6M0Y14K0 (6%,0%,14%,0%) (0.06/0.00/0.14/0.00)
EF | FE | DB | |
---|---|---|---|
RGB | 239 | 254 | 219 |
HSL | 86° | 94.59% | 92.75% |
HSB/HSV | 86° | 13.78% | 99.61% |
CMYK | 5.91% | 0.00% | 13.78% |
0.39% |
HEX | EF | FE | DB |
Decimal | 239 | 254 | 219 |
Binary | 11101111 | 11111110 | 11011011 |
Octal | 357 | 376 | 333 |
Examples of css and html codes for elements with #EFFEDB color. Also use rgb(239,254,219) instead hex code.
.myTextColor { color: #EFFEDB; }
<p style="color:#EFFEDB">This sample text font color is #EFFEDB.</p>
This text font color is #EFFEDB.
.myBgColor { background-color: #EFFEDB; }
<div style="background-color:#EFFEDB">Inner text</div>
This div background color is #EFFEDB.
.myBorderColor { border: 1px solid #EFFEDB; }
<div style="border:3px solid #EFFEDB">Div</div>
This div border color is #EFFEDB.
.myOpacity80 { color: #EFFEDB; opacity: 0.8; }
<p style="color:#EFFEDB;opacity:0.8;">80%</p>
Text with #EFFEDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFFEDB;}
<p style="text-shadow: 3px 3px 1px #EFFEDB">Text here.</p>
This text has shadow with #EFFEDB color.
.textShadow {text-shadow: 3px 3px 1px #EFFEDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFFEDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFFEDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFFEDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFFEDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFFEDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFFEDB; -webkit-box-shadow: 1px 1px 3px 2px #EFFEDB; box-shadow: 1px 1px 3px 2px #EFFEDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFFEDB; -webkit-box-shadow: 1px 1px 3px 2px #EFFEDB; box-shadow:1px 1px 3px 2px #EFFEDB;">
Div content here</div>
This text has color #EFFEDB on black background.
This text has color #EFFEDB on white background.
This text has black color on #EFFEDB background.
This text has white color on #EFFEDB background.