HEX: #EEF3CA
RGB: (238,243,202)
#EEF3CA contains red, green and blue colors in about the same proportion. Web safe color of #EEF3CA is #FFFFCC (or #FFC).
#EEF3CA color RGB value is (238,243,202).
RGB: (238,243,202) (93%,95%,79%)
R 238 of 255 = 93%
G 243 of 255 = 95%
B 202 of 255 = 79%
R + G + B ~ 89%. #EEF3CA is light color.
R + G + B =
238 + 243 + 202 = 683 (100%)
R 238 of 683 ~ 34.85%
G 243 of 683 ~ 35.58%
B 202 of 683 ~ 29.58%
#EEF3CA color CMYK value is (2,0,17,5).
CMYK: (2,0,17,5) C2M0Y17K5 (2%,0%,17%,5%) (0.02/0.00/0.17/0.05)
EE | F3 | CA | |
---|---|---|---|
RGB | 238 | 243 | 202 |
HSL | 67° | 63.08% | 87.25% |
HSB/HSV | 67° | 16.87% | 95.29% |
CMYK | 2.06% | 0.00% | 16.87% |
4.71% |
HEX | EE | F3 | CA |
Decimal | 238 | 243 | 202 |
Binary | 11101110 | 11110011 | 11001010 |
Octal | 356 | 363 | 312 |
Examples of css and html codes for elements with #EEF3CA color. Also use rgb(238,243,202) instead hex code.
.myTextColor { color: #EEF3CA; }
<p style="color:#EEF3CA">This sample text font color is #EEF3CA.</p>
This text font color is #EEF3CA.
.myBgColor { background-color: #EEF3CA; }
<div style="background-color:#EEF3CA">Inner text</div>
This div background color is #EEF3CA.
.myBorderColor { border: 1px solid #EEF3CA; }
<div style="border:3px solid #EEF3CA">Div</div>
This div border color is #EEF3CA.
.myOpacity80 { color: #EEF3CA; opacity: 0.8; }
<p style="color:#EEF3CA;opacity:0.8;">80%</p>
Text with #EEF3CA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEF3CA;}
<p style="text-shadow: 3px 3px 1px #EEF3CA">Text here.</p>
This text has shadow with #EEF3CA color.
.textShadow {text-shadow: 3px 3px 1px #EEF3CA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEF3CA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEF3CA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEF3CA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEF3CA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEF3CA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEF3CA; -webkit-box-shadow: 1px 1px 3px 2px #EEF3CA; box-shadow: 1px 1px 3px 2px #EEF3CA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEF3CA; -webkit-box-shadow: 1px 1px 3px 2px #EEF3CA; box-shadow:1px 1px 3px 2px #EEF3CA;">
Div content here</div>
This text has color #EEF3CA on black background.
This text has color #EEF3CA on white background.
This text has black color on #EEF3CA background.
This text has white color on #EEF3CA background.