HEX: #EFFEE5
RGB: (239,254,229)
#EFFEE5 contains red, green and blue colors in about the same proportion. Web safe color of #EFFEE5 is #FFFFCC (or #FFC).
#EFFEE5 color RGB value is (239,254,229).
RGB: (239,254,229) (94%,100%,90%)
R 239 of 255 = 94%
G 254 of 255 = 100%
B 229 of 255 = 90%
R + G + B ~ 95%. #EFFEE5 is light color.
R + G + B =
239 + 254 + 229 = 722 (100%)
R 239 of 722 ~ 33.1%
G 254 of 722 ~ 35.18%
B 229 of 722 ~ 31.72%
#EFFEE5 color CMYK value is (6,0,10,0).
CMYK: (6,0,10,0) C6M0Y10K0 (6%,0%,10%,0%) (0.06/0.00/0.10/0.00)
EF | FE | E5 | |
---|---|---|---|
RGB | 239 | 254 | 229 |
HSL | 96° | 92.59% | 94.71% |
HSB/HSV | 96° | 9.84% | 99.61% |
CMYK | 5.91% | 0.00% | 9.84% |
0.39% |
HEX | EF | FE | E5 |
Decimal | 239 | 254 | 229 |
Binary | 11101111 | 11111110 | 11100101 |
Octal | 357 | 376 | 345 |
Examples of css and html codes for elements with #EFFEE5 color. Also use rgb(239,254,229) instead hex code.
.myTextColor { color: #EFFEE5; }
<p style="color:#EFFEE5">This sample text font color is #EFFEE5.</p>
This text font color is #EFFEE5.
.myBgColor { background-color: #EFFEE5; }
<div style="background-color:#EFFEE5">Inner text</div>
This div background color is #EFFEE5.
.myBorderColor { border: 1px solid #EFFEE5; }
<div style="border:3px solid #EFFEE5">Div</div>
This div border color is #EFFEE5.
.myOpacity80 { color: #EFFEE5; opacity: 0.8; }
<p style="color:#EFFEE5;opacity:0.8;">80%</p>
Text with #EFFEE5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFFEE5;}
<p style="text-shadow: 3px 3px 1px #EFFEE5">Text here.</p>
This text has shadow with #EFFEE5 color.
.textShadow {text-shadow: 3px 3px 1px #EFFEE5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFFEE5, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFFEE5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFFEE5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFFEE5, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFFEE5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFFEE5; -webkit-box-shadow: 1px 1px 3px 2px #EFFEE5; box-shadow: 1px 1px 3px 2px #EFFEE5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFFEE5; -webkit-box-shadow: 1px 1px 3px 2px #EFFEE5; box-shadow:1px 1px 3px 2px #EFFEE5;">
Div content here</div>
This text has color #EFFEE5 on black background.
This text has color #EFFEE5 on white background.
This text has black color on #EFFEE5 background.
This text has white color on #EFFEE5 background.