HEX: #F3E1DC
RGB: (243,225,220)
#F3E1DC contains red, green and blue colors in about the same proportion. Web safe color of #F3E1DC is #FFCCCC (or #FCC).
#F3E1DC color RGB value is (243,225,220).
RGB: (243,225,220) (95%,88%,86%)
R 243 of 255 = 95%
G 225 of 255 = 88%
B 220 of 255 = 86%
R + G + B ~ 90%. #F3E1DC is light color.
R + G + B =
243 + 225 + 220 = 688 (100%)
R 243 of 688 ~ 35.32%
G 225 of 688 ~ 32.7%
B 220 of 688 ~ 31.98%
#F3E1DC color CMYK value is (0,7,9,5).
CMYK: (0,7,9,5) C0M7Y9K5 (0%,7%,9%,5%) (0.00/0.07/0.09/0.05)
F3 | E1 | DC | |
---|---|---|---|
RGB | 243 | 225 | 220 |
HSL | 13° | 48.94% | 90.78% |
HSB/HSV | 13° | 9.47% | 95.29% |
CMYK | 0.00% | 7.41% | 9.47% |
4.71% |
HEX | F3 | E1 | DC |
Decimal | 243 | 225 | 220 |
Binary | 11110011 | 11100001 | 11011100 |
Octal | 363 | 341 | 334 |
Examples of css and html codes for elements with #F3E1DC color. Also use rgb(243,225,220) instead hex code.
.myTextColor { color: #F3E1DC; }
<p style="color:#F3E1DC">This sample text font color is #F3E1DC.</p>
This text font color is #F3E1DC.
.myBgColor { background-color: #F3E1DC; }
<div style="background-color:#F3E1DC">Inner text</div>
This div background color is #F3E1DC.
.myBorderColor { border: 1px solid #F3E1DC; }
<div style="border:3px solid #F3E1DC">Div</div>
This div border color is #F3E1DC.
.myOpacity80 { color: #F3E1DC; opacity: 0.8; }
<p style="color:#F3E1DC;opacity:0.8;">80%</p>
Text with #F3E1DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F3E1DC;}
<p style="text-shadow: 3px 3px 1px #F3E1DC">Text here.</p>
This text has shadow with #F3E1DC color.
.textShadow {text-shadow: 3px 3px 1px #F3E1DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F3E1DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #F3E1DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F3E1DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F3E1DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #F3E1DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F3E1DC; -webkit-box-shadow: 1px 1px 3px 2px #F3E1DC; box-shadow: 1px 1px 3px 2px #F3E1DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F3E1DC; -webkit-box-shadow: 1px 1px 3px 2px #F3E1DC; box-shadow:1px 1px 3px 2px #F3E1DC;">
Div content here</div>
This text has color #F3E1DC on black background.
This text has color #F3E1DC on white background.
This text has black color on #F3E1DC background.
This text has white color on #F3E1DC background.