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