HEX: #EFFBC6
RGB: (239,251,198)
#EFFBC6 contains red, green and blue colors in about the same proportion. Web safe color of #EFFBC6 is #FFFFCC (or #FFC).
#EFFBC6 color RGB value is (239,251,198).
RGB: (239,251,198) (94%,98%,78%)
R 239 of 255 = 94%
G 251 of 255 = 98%
B 198 of 255 = 78%
R + G + B ~ 90%. #EFFBC6 is light color.
R + G + B =
239 + 251 + 198 = 688 (100%)
R 239 of 688 ~ 34.74%
G 251 of 688 ~ 36.48%
B 198 of 688 ~ 28.78%
#EFFBC6 color CMYK value is (5,0,21,2).
CMYK: (5,0,21,2) C5M0Y21K2 (5%,0%,21%,2%) (0.05/0.00/0.21/0.02)
EF | FB | C6 | |
---|---|---|---|
RGB | 239 | 251 | 198 |
HSL | 74° | 86.89% | 88.04% |
HSB/HSV | 74° | 21.12% | 98.43% |
CMYK | 4.78% | 0.00% | 21.12% |
1.57% |
HEX | EF | FB | C6 |
Decimal | 239 | 251 | 198 |
Binary | 11101111 | 11111011 | 11000110 |
Octal | 357 | 373 | 306 |
Examples of css and html codes for elements with #EFFBC6 color. Also use rgb(239,251,198) instead hex code.
.myTextColor { color: #EFFBC6; }
<p style="color:#EFFBC6">This sample text font color is #EFFBC6.</p>
This text font color is #EFFBC6.
.myBgColor { background-color: #EFFBC6; }
<div style="background-color:#EFFBC6">Inner text</div>
This div background color is #EFFBC6.
.myBorderColor { border: 1px solid #EFFBC6; }
<div style="border:3px solid #EFFBC6">Div</div>
This div border color is #EFFBC6.
.myOpacity80 { color: #EFFBC6; opacity: 0.8; }
<p style="color:#EFFBC6;opacity:0.8;">80%</p>
Text with #EFFBC6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFFBC6;}
<p style="text-shadow: 3px 3px 1px #EFFBC6">Text here.</p>
This text has shadow with #EFFBC6 color.
.textShadow {text-shadow: 3px 3px 1px #EFFBC6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFFBC6, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFFBC6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFFBC6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFFBC6, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFFBC6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFFBC6; -webkit-box-shadow: 1px 1px 3px 2px #EFFBC6; box-shadow: 1px 1px 3px 2px #EFFBC6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFFBC6; -webkit-box-shadow: 1px 1px 3px 2px #EFFBC6; box-shadow:1px 1px 3px 2px #EFFBC6;">
Div content here</div>
This text has color #EFFBC6 on black background.
This text has color #EFFBC6 on white background.
This text has black color on #EFFBC6 background.
This text has white color on #EFFBC6 background.