HEX: #EEE8AA
RGB: (238,232,170)
Color name is PaleGoldenrod. #EEE8AA contains mainly red and green colors. Web safe color of #EEE8AA is #FFFF99 (or #FF9).
#EEE8AA color RGB value is (238,232,170).
RGB: (238,232,170) (93%,91%,67%)
R 238 of 255 = 93%
G 232 of 255 = 91%
B 170 of 255 = 67%
R + G + B ~ 84%. #EEE8AA is quite light color.
R + G + B =
238 + 232 + 170 = 640 (100%)
R 238 of 640 ~ 37.19%
G 232 of 640 ~ 36.25%
B 170 of 640 ~ 26.56%
#EEE8AA color CMYK value is (0,3,29,7).
CMYK: (0,3,29,7) C0M3Y29K7 (0%,3%,29%,7%) (0.00/0.03/0.29/0.07)
EE | E8 | AA | |
---|---|---|---|
RGB | 238 | 232 | 170 |
HSL | 55° | 66.67% | 80.00% |
HSB/HSV | 55° | 28.57% | 93.33% |
CMYK | 0.00% | 2.52% | 28.57% |
6.67% |
HEX | EE | E8 | AA |
Decimal | 238 | 232 | 170 |
Binary | 11101110 | 11101000 | 10101010 |
Octal | 356 | 350 | 252 |
Examples of css and html codes for elements with #EEE8AA color. Also use rgb(238,232,170) instead hex code.
.myTextColor { color: #EEE8AA; }
<p style="color:#EEE8AA">This sample text font color is #EEE8AA.</p>
This text font color is #EEE8AA.
.myBgColor { background-color: #EEE8AA; }
<div style="background-color:#EEE8AA">Inner text</div>
This div background color is #EEE8AA.
.myBorderColor { border: 1px solid #EEE8AA; }
<div style="border:3px solid #EEE8AA">Div</div>
This div border color is #EEE8AA.
.myOpacity80 { color: #EEE8AA; opacity: 0.8; }
<p style="color:#EEE8AA;opacity:0.8;">80%</p>
Text with #EEE8AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEE8AA;}
<p style="text-shadow: 3px 3px 1px #EEE8AA">Text here.</p>
This text has shadow with #EEE8AA color.
.textShadow {text-shadow: 3px 3px 1px #EEE8AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEE8AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEE8AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEE8AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEE8AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEE8AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEE8AA; -webkit-box-shadow: 1px 1px 3px 2px #EEE8AA; box-shadow: 1px 1px 3px 2px #EEE8AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEE8AA; -webkit-box-shadow: 1px 1px 3px 2px #EEE8AA; box-shadow:1px 1px 3px 2px #EEE8AA;">
Div content here</div>
This text has color #EEE8AA on black background.
This text has color #EEE8AA on white background.
This text has black color on #EEE8AA background.
This text has white color on #EEE8AA background.