HEX: #FDF3EE
RGB: (253,243,238)
#FDF3EE contains red, green and blue colors in about the same proportion. Web safe color of #FDF3EE is #FFFFFF (or #FFF).
#FDF3EE color RGB value is (253,243,238).
RGB: (253,243,238) (99%,95%,93%)
R 253 of 255 = 99%
G 243 of 255 = 95%
B 238 of 255 = 93%
R + G + B ~ 96%. #FDF3EE is light color.
R + G + B =
253 + 243 + 238 = 734 (100%)
R 253 of 734 ~ 34.47%
G 243 of 734 ~ 33.11%
B 238 of 734 ~ 32.43%
#FDF3EE color CMYK value is (0,4,6,1).
CMYK: (0,4,6,1) C0M4Y6K1 (0%,4%,6%,1%) (0.00/0.04/0.06/0.01)
FD | F3 | EE | |
---|---|---|---|
RGB | 253 | 243 | 238 |
HSL | 20° | 78.95% | 96.27% |
HSB/HSV | 20° | 5.93% | 99.22% |
CMYK | 0.00% | 3.95% | 5.93% |
0.78% |
HEX | FD | F3 | EE |
Decimal | 253 | 243 | 238 |
Binary | 11111101 | 11110011 | 11101110 |
Octal | 375 | 363 | 356 |
Examples of css and html codes for elements with #FDF3EE color. Also use rgb(253,243,238) instead hex code.
.myTextColor { color: #FDF3EE; }
<p style="color:#FDF3EE">This sample text font color is #FDF3EE.</p>
This text font color is #FDF3EE.
.myBgColor { background-color: #FDF3EE; }
<div style="background-color:#FDF3EE">Inner text</div>
This div background color is #FDF3EE.
.myBorderColor { border: 1px solid #FDF3EE; }
<div style="border:3px solid #FDF3EE">Div</div>
This div border color is #FDF3EE.
.myOpacity80 { color: #FDF3EE; opacity: 0.8; }
<p style="color:#FDF3EE;opacity:0.8;">80%</p>
Text with #FDF3EE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDF3EE;}
<p style="text-shadow: 3px 3px 1px #FDF3EE">Text here.</p>
This text has shadow with #FDF3EE color.
.textShadow {text-shadow: 3px 3px 1px #FDF3EE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDF3EE, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDF3EE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDF3EE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDF3EE, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDF3EE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDF3EE; -webkit-box-shadow: 1px 1px 3px 2px #FDF3EE; box-shadow: 1px 1px 3px 2px #FDF3EE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDF3EE; -webkit-box-shadow: 1px 1px 3px 2px #FDF3EE; box-shadow:1px 1px 3px 2px #FDF3EE;">
Div content here</div>
This text has color #FDF3EE on black background.
This text has color #FDF3EE on white background.
This text has black color on #FDF3EE background.
This text has white color on #FDF3EE background.