HEX: #FEEE9F
RGB: (254,238,159)
#FEEE9F contains mainly red and green colors. Web safe color of #FEEE9F is #FFFF99 (or #FF9).
#FEEE9F color RGB value is (254,238,159).
RGB: (254,238,159) (100%,93%,62%)
R 254 of 255 = 100%
G 238 of 255 = 93%
B 159 of 255 = 62%
R + G + B ~ 85%. #FEEE9F is quite light color.
R + G + B =
254 + 238 + 159 = 651 (100%)
R 254 of 651 ~ 39.02%
G 238 of 651 ~ 36.56%
B 159 of 651 ~ 24.42%
#FEEE9F color CMYK value is (0,6,37,0).
CMYK: (0,6,37,0) C0M6Y37K0 (0%,6%,37%,0%) (0.00/0.06/0.37/0.00)
FE | EE | 9F | |
---|---|---|---|
RGB | 254 | 238 | 159 |
HSL | 50° | 97.94% | 80.98% |
HSB/HSV | 50° | 37.40% | 99.61% |
CMYK | 0.00% | 6.30% | 37.40% |
0.39% |
HEX | FE | EE | 9F |
Decimal | 254 | 238 | 159 |
Binary | 11111110 | 11101110 | 10011111 |
Octal | 376 | 356 | 237 |
Examples of css and html codes for elements with #FEEE9F color. Also use rgb(254,238,159) instead hex code.
.myTextColor { color: #FEEE9F; }
<p style="color:#FEEE9F">This sample text font color is #FEEE9F.</p>
This text font color is #FEEE9F.
.myBgColor { background-color: #FEEE9F; }
<div style="background-color:#FEEE9F">Inner text</div>
This div background color is #FEEE9F.
.myBorderColor { border: 1px solid #FEEE9F; }
<div style="border:3px solid #FEEE9F">Div</div>
This div border color is #FEEE9F.
.myOpacity80 { color: #FEEE9F; opacity: 0.8; }
<p style="color:#FEEE9F;opacity:0.8;">80%</p>
Text with #FEEE9F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEEE9F;}
<p style="text-shadow: 3px 3px 1px #FEEE9F">Text here.</p>
This text has shadow with #FEEE9F color.
.textShadow {text-shadow: 3px 3px 1px #FEEE9F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEEE9F, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEEE9F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEEE9F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEEE9F, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEEE9F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEEE9F; -webkit-box-shadow: 1px 1px 3px 2px #FEEE9F; box-shadow: 1px 1px 3px 2px #FEEE9F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEEE9F; -webkit-box-shadow: 1px 1px 3px 2px #FEEE9F; box-shadow:1px 1px 3px 2px #FEEE9F;">
Div content here</div>
This text has color #FEEE9F on black background.
This text has color #FEEE9F on white background.
This text has black color on #FEEE9F background.
This text has white color on #FEEE9F background.