HEX: #EFF9CA
RGB: (239,249,202)
#EFF9CA contains red, green and blue colors in about the same proportion. Web safe color of #EFF9CA is #FFFFCC (or #FFC).
#EFF9CA color RGB value is (239,249,202).
RGB: (239,249,202) (94%,98%,79%)
R 239 of 255 = 94%
G 249 of 255 = 98%
B 202 of 255 = 79%
R + G + B ~ 90%. #EFF9CA is light color.
R + G + B =
239 + 249 + 202 = 690 (100%)
R 239 of 690 ~ 34.64%
G 249 of 690 ~ 36.09%
B 202 of 690 ~ 29.28%
#EFF9CA color CMYK value is (4,0,19,2).
CMYK: (4,0,19,2) C4M0Y19K2 (4%,0%,19%,2%) (0.04/0.00/0.19/0.02)
EF | F9 | CA | |
---|---|---|---|
RGB | 239 | 249 | 202 |
HSL | 73° | 79.66% | 88.43% |
HSB/HSV | 73° | 18.88% | 97.65% |
CMYK | 4.02% | 0.00% | 18.88% |
2.35% |
HEX | EF | F9 | CA |
Decimal | 239 | 249 | 202 |
Binary | 11101111 | 11111001 | 11001010 |
Octal | 357 | 371 | 312 |
Examples of css and html codes for elements with #EFF9CA color. Also use rgb(239,249,202) instead hex code.
.myTextColor { color: #EFF9CA; }
<p style="color:#EFF9CA">This sample text font color is #EFF9CA.</p>
This text font color is #EFF9CA.
.myBgColor { background-color: #EFF9CA; }
<div style="background-color:#EFF9CA">Inner text</div>
This div background color is #EFF9CA.
.myBorderColor { border: 1px solid #EFF9CA; }
<div style="border:3px solid #EFF9CA">Div</div>
This div border color is #EFF9CA.
.myOpacity80 { color: #EFF9CA; opacity: 0.8; }
<p style="color:#EFF9CA;opacity:0.8;">80%</p>
Text with #EFF9CA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EFF9CA;}
<p style="text-shadow: 3px 3px 1px #EFF9CA">Text here.</p>
This text has shadow with #EFF9CA color.
.textShadow {text-shadow: 3px 3px 1px #EFF9CA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EFF9CA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EFF9CA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EFF9CA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EFF9CA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EFF9CA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EFF9CA; -webkit-box-shadow: 1px 1px 3px 2px #EFF9CA; box-shadow: 1px 1px 3px 2px #EFF9CA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EFF9CA; -webkit-box-shadow: 1px 1px 3px 2px #EFF9CA; box-shadow:1px 1px 3px 2px #EFF9CA;">
Div content here</div>
This text has color #EFF9CA on black background.
This text has color #EFF9CA on white background.
This text has black color on #EFF9CA background.
This text has white color on #EFF9CA background.