HEX: #EEDFA4
RGB: (238,223,164)
#EEDFA4 contains mainly red and green colors. Web safe color of #EEDFA4 is #FFCC99 (or #FC9).
#EEDFA4 color RGB value is (238,223,164).
RGB: (238,223,164) (93%,87%,64%)
R 238 of 255 = 93%
G 223 of 255 = 87%
B 164 of 255 = 64%
R + G + B ~ 81%. #EEDFA4 is quite light color.
R + G + B =
238 + 223 + 164 = 625 (100%)
R 238 of 625 ~ 38.08%
G 223 of 625 ~ 35.68%
B 164 of 625 ~ 26.24%
#EEDFA4 color CMYK value is (0,6,31,7).
CMYK: (0,6,31,7) C0M6Y31K7 (0%,6%,31%,7%) (0.00/0.06/0.31/0.07)
EE | DF | A4 | |
---|---|---|---|
RGB | 238 | 223 | 164 |
HSL | 48° | 68.52% | 78.82% |
HSB/HSV | 48° | 31.09% | 93.33% |
CMYK | 0.00% | 6.30% | 31.09% |
6.67% |
HEX | EE | DF | A4 |
Decimal | 238 | 223 | 164 |
Binary | 11101110 | 11011111 | 10100100 |
Octal | 356 | 337 | 244 |
Examples of css and html codes for elements with #EEDFA4 color. Also use rgb(238,223,164) instead hex code.
.myTextColor { color: #EEDFA4; }
<p style="color:#EEDFA4">This sample text font color is #EEDFA4.</p>
This text font color is #EEDFA4.
.myBgColor { background-color: #EEDFA4; }
<div style="background-color:#EEDFA4">Inner text</div>
This div background color is #EEDFA4.
.myBorderColor { border: 1px solid #EEDFA4; }
<div style="border:3px solid #EEDFA4">Div</div>
This div border color is #EEDFA4.
.myOpacity80 { color: #EEDFA4; opacity: 0.8; }
<p style="color:#EEDFA4;opacity:0.8;">80%</p>
Text with #EEDFA4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEDFA4;}
<p style="text-shadow: 3px 3px 1px #EEDFA4">Text here.</p>
This text has shadow with #EEDFA4 color.
.textShadow {text-shadow: 3px 3px 1px #EEDFA4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEDFA4, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEDFA4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEDFA4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEDFA4, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEDFA4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEDFA4; -webkit-box-shadow: 1px 1px 3px 2px #EEDFA4; box-shadow: 1px 1px 3px 2px #EEDFA4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEDFA4; -webkit-box-shadow: 1px 1px 3px 2px #EEDFA4; box-shadow:1px 1px 3px 2px #EEDFA4;">
Div content here</div>
This text has color #EEDFA4 on black background.
This text has color #EEDFA4 on white background.
This text has black color on #EEDFA4 background.
This text has white color on #EEDFA4 background.