HEX: #EFFFD2
RGB: (239,255,210)
#EFFFD2 contains red, green and blue colors in about the same proportion. Web safe color of #EFFFD2 is #FFFFCC (or #FFC).
#EFFFD2 color RGB value is (239,255,210).
RGB: (239,255,210) (94%,100%,82%)
R 239 of 255 = 94%
G 255 of 255 = 100%
B 210 of 255 = 82%
R + G + B ~ 92%. #EFFFD2 is light color.
R + G + B =
239 + 255 + 210 = 704 (100%)
R 239 of 704 ~ 33.95%
G 255 of 704 ~ 36.22%
B 210 of 704 ~ 29.83%
#EFFFD2 color CMYK value is (6,0,18,0).
CMYK: (6,0,18,0) C6M0Y18K0 (6%,0%,18%,0%) (0.06/0.00/0.18/0.00)
EF | FF | D2 | |
---|---|---|---|
RGB | 239 | 255 | 210 |
HSL | 81° | 100.00% | 91.18% |
HSB/HSV | 81° | 17.65% | 100.00% |
CMYK | 6.27% | 0.00% | 17.65% |
0.00% |
HEX | EF | FF | D2 |
Decimal | 239 | 255 | 210 |
Binary | 11101111 | 11111111 | 11010010 |
Octal | 357 | 377 | 322 |
Examples of css and html codes for elements with #EFFFD2 color. Also use rgb(239,255,210) instead hex code.
.myTextColor { color: #EFFFD2; }
<p style="color:#EFFFD2">This sample text font color is #EFFFD2.</p>
This text font color is #EFFFD2.
.myBgColor { background-color: #EFFFD2; }
<div style="background-color:#EFFFD2">Inner text</div>
This div background color is #EFFFD2.
.myBorderColor { border: 1px solid #EFFFD2; }
<div style="border:3px solid #EFFFD2">Div</div>
This div border color is #EFFFD2.
.myOpacity80 { color: #EFFFD2; opacity: 0.8; }
<p style="color:#EFFFD2;opacity:0.8;">80%</p>
Text with #EFFFD2 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFFFD2;}
<p style="text-shadow: 3px 3px 1px #EFFFD2">Text here.</p>
This text has shadow with #EFFFD2 color.
.textShadow {text-shadow: 3px 3px 1px #EFFFD2, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFFFD2, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFFFD2 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFFFD2, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFFFD2, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFFFD2 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFFFD2; -webkit-box-shadow: 1px 1px 3px 2px #EFFFD2; box-shadow: 1px 1px 3px 2px #EFFFD2; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFFFD2; -webkit-box-shadow: 1px 1px 3px 2px #EFFFD2; box-shadow:1px 1px 3px 2px #EFFFD2;">
Div content here</div>
This text has color #EFFFD2 on black background.
This text has color #EFFFD2 on white background.
This text has black color on #EFFFD2 background.
This text has white color on #EFFFD2 background.