HEX: #FFF9DF
RGB: (255,249,223)
#FFF9DF contains red, green and blue colors in about the same proportion. Web safe color of #FFF9DF is #FFFFCC (or #FFC).
#FFF9DF color RGB value is (255,249,223).
RGB: (255,249,223) (100%,98%,87%)
R 255 of 255 = 100%
G 249 of 255 = 98%
B 223 of 255 = 87%
R + G + B ~ 95%. #FFF9DF is light color.
R + G + B =
255 + 249 + 223 = 727 (100%)
R 255 of 727 ~ 35.08%
G 249 of 727 ~ 34.25%
B 223 of 727 ~ 30.67%
#FFF9DF color CMYK value is (0,2,13,0).
CMYK: (0,2,13,0) C0M2Y13K0 (0%,2%,13%,0%) (0.00/0.02/0.13/0.00)
FF | F9 | DF | |
---|---|---|---|
RGB | 255 | 249 | 223 |
HSL | 49° | 100.00% | 93.73% |
HSB/HSV | 49° | 12.55% | 100.00% |
CMYK | 0.00% | 2.35% | 12.55% |
0.00% |
HEX | FF | F9 | DF |
Decimal | 255 | 249 | 223 |
Binary | 11111111 | 11111001 | 11011111 |
Octal | 377 | 371 | 337 |
Examples of css and html codes for elements with #FFF9DF color. Also use rgb(255,249,223) instead hex code.
.myTextColor { color: #FFF9DF; }
<p style="color:#FFF9DF">This sample text font color is #FFF9DF.</p>
This text font color is #FFF9DF.
.myBgColor { background-color: #FFF9DF; }
<div style="background-color:#FFF9DF">Inner text</div>
This div background color is #FFF9DF.
.myBorderColor { border: 1px solid #FFF9DF; }
<div style="border:3px solid #FFF9DF">Div</div>
This div border color is #FFF9DF.
.myOpacity80 { color: #FFF9DF; opacity: 0.8; }
<p style="color:#FFF9DF;opacity:0.8;">80%</p>
Text with #FFF9DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFF9DF;}
<p style="text-shadow: 3px 3px 1px #FFF9DF">Text here.</p>
This text has shadow with #FFF9DF color.
.textShadow {text-shadow: 3px 3px 1px #FFF9DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFF9DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFF9DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFF9DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFF9DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFF9DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFF9DF; -webkit-box-shadow: 1px 1px 3px 2px #FFF9DF; box-shadow: 1px 1px 3px 2px #FFF9DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFF9DF; -webkit-box-shadow: 1px 1px 3px 2px #FFF9DF; box-shadow:1px 1px 3px 2px #FFF9DF;">
Div content here</div>
This text has color #FFF9DF on black background.
This text has color #FFF9DF on white background.
This text has black color on #FFF9DF background.
This text has white color on #FFF9DF background.