HEX: #FFF9EF
RGB: (255,249,239)
#FFF9EF contains red, green and blue colors in about the same proportion. Web safe color of #FFF9EF is #FFFFFF (or #FFF).
#FFF9EF color RGB value is (255,249,239).
RGB: (255,249,239) (100%,98%,94%)
R 255 of 255 = 100%
G 249 of 255 = 98%
B 239 of 255 = 94%
R + G + B ~ 97%. #FFF9EF is light color.
R + G + B =
255 + 249 + 239 = 743 (100%)
R 255 of 743 ~ 34.32%
G 249 of 743 ~ 33.51%
B 239 of 743 ~ 32.17%
#FFF9EF color CMYK value is (0,2,6,0).
CMYK: (0,2,6,0) C0M2Y6K0 (0%,2%,6%,0%) (0.00/0.02/0.06/0.00)
FF | F9 | EF | |
---|---|---|---|
RGB | 255 | 249 | 239 |
HSL | 38° | 100.00% | 96.86% |
HSB/HSV | 38° | 6.27% | 100.00% |
CMYK | 0.00% | 2.35% | 6.27% |
0.00% |
HEX | FF | F9 | EF |
Decimal | 255 | 249 | 239 |
Binary | 11111111 | 11111001 | 11101111 |
Octal | 377 | 371 | 357 |
Examples of css and html codes for elements with #FFF9EF color. Also use rgb(255,249,239) instead hex code.
.myTextColor { color: #FFF9EF; }
<p style="color:#FFF9EF">This sample text font color is #FFF9EF.</p>
This text font color is #FFF9EF.
.myBgColor { background-color: #FFF9EF; }
<div style="background-color:#FFF9EF">Inner text</div>
This div background color is #FFF9EF.
.myBorderColor { border: 1px solid #FFF9EF; }
<div style="border:3px solid #FFF9EF">Div</div>
This div border color is #FFF9EF.
.myOpacity80 { color: #FFF9EF; opacity: 0.8; }
<p style="color:#FFF9EF;opacity:0.8;">80%</p>
Text with #FFF9EF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFF9EF;}
<p style="text-shadow: 3px 3px 1px #FFF9EF">Text here.</p>
This text has shadow with #FFF9EF color.
.textShadow {text-shadow: 3px 3px 1px #FFF9EF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFF9EF, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFF9EF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFF9EF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFF9EF, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFF9EF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFF9EF; -webkit-box-shadow: 1px 1px 3px 2px #FFF9EF; box-shadow: 1px 1px 3px 2px #FFF9EF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFF9EF; -webkit-box-shadow: 1px 1px 3px 2px #FFF9EF; box-shadow:1px 1px 3px 2px #FFF9EF;">
Div content here</div>
This text has color #FFF9EF on black background.
This text has color #FFF9EF on white background.
This text has black color on #FFF9EF background.
This text has white color on #FFF9EF background.