HEX: #FEEAAD
RGB: (254,234,173)
#FEEAAD contains mainly red and green colors. Web safe color of #FEEAAD is #FFFF99 (or #FF9).
#FEEAAD color RGB value is (254,234,173).
RGB: (254,234,173) (100%,92%,68%)
R 254 of 255 = 100%
G 234 of 255 = 92%
B 173 of 255 = 68%
R + G + B ~ 87%. #FEEAAD is light color.
R + G + B =
254 + 234 + 173 = 661 (100%)
R 254 of 661 ~ 38.43%
G 234 of 661 ~ 35.4%
B 173 of 661 ~ 26.17%
#FEEAAD color CMYK value is (0,8,32,0).
CMYK: (0,8,32,0) C0M8Y32K0 (0%,8%,32%,0%) (0.00/0.08/0.32/0.00)
FE | EA | AD | |
---|---|---|---|
RGB | 254 | 234 | 173 |
HSL | 45° | 97.59% | 83.73% |
HSB/HSV | 45° | 31.89% | 99.61% |
CMYK | 0.00% | 7.87% | 31.89% |
0.39% |
HEX | FE | EA | AD |
Decimal | 254 | 234 | 173 |
Binary | 11111110 | 11101010 | 10101101 |
Octal | 376 | 352 | 255 |
Examples of css and html codes for elements with #FEEAAD color. Also use rgb(254,234,173) instead hex code.
.myTextColor { color: #FEEAAD; }
<p style="color:#FEEAAD">This sample text font color is #FEEAAD.</p>
This text font color is #FEEAAD.
.myBgColor { background-color: #FEEAAD; }
<div style="background-color:#FEEAAD">Inner text</div>
This div background color is #FEEAAD.
.myBorderColor { border: 1px solid #FEEAAD; }
<div style="border:3px solid #FEEAAD">Div</div>
This div border color is #FEEAAD.
.myOpacity80 { color: #FEEAAD; opacity: 0.8; }
<p style="color:#FEEAAD;opacity:0.8;">80%</p>
Text with #FEEAAD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEEAAD;}
<p style="text-shadow: 3px 3px 1px #FEEAAD">Text here.</p>
This text has shadow with #FEEAAD color.
.textShadow {text-shadow: 3px 3px 1px #FEEAAD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEEAAD, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEEAAD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEEAAD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEEAAD, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEEAAD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEEAAD; -webkit-box-shadow: 1px 1px 3px 2px #FEEAAD; box-shadow: 1px 1px 3px 2px #FEEAAD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEEAAD; -webkit-box-shadow: 1px 1px 3px 2px #FEEAAD; box-shadow:1px 1px 3px 2px #FEEAAD;">
Div content here</div>
This text has color #FEEAAD on black background.
This text has color #FEEAAD on white background.
This text has black color on #FEEAAD background.
This text has white color on #FEEAAD background.