HEX: #EEEDC3
RGB: (238,237,195)
#EEEDC3 contains red, green and blue colors in about the same proportion. Web safe color of #EEEDC3 is #FFFFCC (or #FFC).
#EEEDC3 color RGB value is (238,237,195).
RGB: (238,237,195) (93%,93%,76%)
R 238 of 255 = 93%
G 237 of 255 = 93%
B 195 of 255 = 76%
R + G + B ~ 87%. #EEEDC3 is light color.
R + G + B =
238 + 237 + 195 = 670 (100%)
R 238 of 670 ~ 35.52%
G 237 of 670 ~ 35.37%
B 195 of 670 ~ 29.1%
#EEEDC3 color CMYK value is (0,0,18,7).
CMYK: (0,0,18,7) C0M0Y18K7 (0%,0%,18%,7%) (0.00/0.00/0.18/0.07)
EE | ED | C3 | |
---|---|---|---|
RGB | 238 | 237 | 195 |
HSL | 59° | 55.84% | 84.90% |
HSB/HSV | 59° | 18.07% | 93.33% |
CMYK | 0.00% | 0.42% | 18.07% |
6.67% |
HEX | EE | ED | C3 |
Decimal | 238 | 237 | 195 |
Binary | 11101110 | 11101101 | 11000011 |
Octal | 356 | 355 | 303 |
Examples of css and html codes for elements with #EEEDC3 color. Also use rgb(238,237,195) instead hex code.
.myTextColor { color: #EEEDC3; }
<p style="color:#EEEDC3">This sample text font color is #EEEDC3.</p>
This text font color is #EEEDC3.
.myBgColor { background-color: #EEEDC3; }
<div style="background-color:#EEEDC3">Inner text</div>
This div background color is #EEEDC3.
.myBorderColor { border: 1px solid #EEEDC3; }
<div style="border:3px solid #EEEDC3">Div</div>
This div border color is #EEEDC3.
.myOpacity80 { color: #EEEDC3; opacity: 0.8; }
<p style="color:#EEEDC3;opacity:0.8;">80%</p>
Text with #EEEDC3 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEEDC3;}
<p style="text-shadow: 3px 3px 1px #EEEDC3">Text here.</p>
This text has shadow with #EEEDC3 color.
.textShadow {text-shadow: 3px 3px 1px #EEEDC3, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEEDC3, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEEDC3 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEEDC3, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEEDC3, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEEDC3 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEEDC3; -webkit-box-shadow: 1px 1px 3px 2px #EEEDC3; box-shadow: 1px 1px 3px 2px #EEEDC3; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEEDC3; -webkit-box-shadow: 1px 1px 3px 2px #EEEDC3; box-shadow:1px 1px 3px 2px #EEEDC3;">
Div content here</div>
This text has color #EEEDC3 on black background.
This text has color #EEEDC3 on white background.
This text has black color on #EEEDC3 background.
This text has white color on #EEEDC3 background.