HEX: #FEF9EC
RGB: (254,249,236)
#FEF9EC contains red, green and blue colors in about the same proportion. Web safe color of #FEF9EC is #FFFFFF (or #FFF).
#FEF9EC color RGB value is (254,249,236).
RGB: (254,249,236) (100%,98%,93%)
R 254 of 255 = 100%
G 249 of 255 = 98%
B 236 of 255 = 93%
R + G + B ~ 97%. #FEF9EC is light color.
R + G + B =
254 + 249 + 236 = 739 (100%)
R 254 of 739 ~ 34.37%
G 249 of 739 ~ 33.69%
B 236 of 739 ~ 31.94%
#FEF9EC color CMYK value is (0,2,7,0).
CMYK: (0,2,7,0) C0M2Y7K0 (0%,2%,7%,0%) (0.00/0.02/0.07/0.00)
FE | F9 | EC | |
---|---|---|---|
RGB | 254 | 249 | 236 |
HSL | 43° | 90.00% | 96.08% |
HSB/HSV | 43° | 7.09% | 99.61% |
CMYK | 0.00% | 1.97% | 7.09% |
0.39% |
HEX | FE | F9 | EC |
Decimal | 254 | 249 | 236 |
Binary | 11111110 | 11111001 | 11101100 |
Octal | 376 | 371 | 354 |
Examples of css and html codes for elements with #FEF9EC color. Also use rgb(254,249,236) instead hex code.
.myTextColor { color: #FEF9EC; }
<p style="color:#FEF9EC">This sample text font color is #FEF9EC.</p>
This text font color is #FEF9EC.
.myBgColor { background-color: #FEF9EC; }
<div style="background-color:#FEF9EC">Inner text</div>
This div background color is #FEF9EC.
.myBorderColor { border: 1px solid #FEF9EC; }
<div style="border:3px solid #FEF9EC">Div</div>
This div border color is #FEF9EC.
.myOpacity80 { color: #FEF9EC; opacity: 0.8; }
<p style="color:#FEF9EC;opacity:0.8;">80%</p>
Text with #FEF9EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEF9EC;}
<p style="text-shadow: 3px 3px 1px #FEF9EC">Text here.</p>
This text has shadow with #FEF9EC color.
.textShadow {text-shadow: 3px 3px 1px #FEF9EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEF9EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEF9EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEF9EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEF9EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEF9EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEF9EC; -webkit-box-shadow: 1px 1px 3px 2px #FEF9EC; box-shadow: 1px 1px 3px 2px #FEF9EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEF9EC; -webkit-box-shadow: 1px 1px 3px 2px #FEF9EC; box-shadow:1px 1px 3px 2px #FEF9EC;">
Div content here</div>
This text has color #FEF9EC on black background.
This text has color #FEF9EC on white background.
This text has black color on #FEF9EC background.
This text has white color on #FEF9EC background.