HEX: #F3EDD1
RGB: (243,237,209)
#F3EDD1 contains red, green and blue colors in about the same proportion. Web safe color of #F3EDD1 is #FFFFCC (or #FFC).
#F3EDD1 color RGB value is (243,237,209).
RGB: (243,237,209) (95%,93%,82%)
R 243 of 255 = 95%
G 237 of 255 = 93%
B 209 of 255 = 82%
R + G + B ~ 90%. #F3EDD1 is light color.
R + G + B =
243 + 237 + 209 = 689 (100%)
R 243 of 689 ~ 35.27%
G 237 of 689 ~ 34.4%
B 209 of 689 ~ 30.33%
#F3EDD1 color CMYK value is (0,2,14,5).
CMYK: (0,2,14,5) C0M2Y14K5 (0%,2%,14%,5%) (0.00/0.02/0.14/0.05)
F3 | ED | D1 | |
---|---|---|---|
RGB | 243 | 237 | 209 |
HSL | 49° | 58.62% | 88.63% |
HSB/HSV | 49° | 13.99% | 95.29% |
CMYK | 0.00% | 2.47% | 13.99% |
4.71% |
HEX | F3 | ED | D1 |
Decimal | 243 | 237 | 209 |
Binary | 11110011 | 11101101 | 11010001 |
Octal | 363 | 355 | 321 |
Examples of css and html codes for elements with #F3EDD1 color. Also use rgb(243,237,209) instead hex code.
.myTextColor { color: #F3EDD1; }
<p style="color:#F3EDD1">This sample text font color is #F3EDD1.</p>
This text font color is #F3EDD1.
.myBgColor { background-color: #F3EDD1; }
<div style="background-color:#F3EDD1">Inner text</div>
This div background color is #F3EDD1.
.myBorderColor { border: 1px solid #F3EDD1; }
<div style="border:3px solid #F3EDD1">Div</div>
This div border color is #F3EDD1.
.myOpacity80 { color: #F3EDD1; opacity: 0.8; }
<p style="color:#F3EDD1;opacity:0.8;">80%</p>
Text with #F3EDD1 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F3EDD1;}
<p style="text-shadow: 3px 3px 1px #F3EDD1">Text here.</p>
This text has shadow with #F3EDD1 color.
.textShadow {text-shadow: 3px 3px 1px #F3EDD1, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F3EDD1, 5px 5px 20px red">Text here.</p>
This text has shadow with #F3EDD1 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F3EDD1, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F3EDD1, Direction=45, Strength=4)">Text</p>
This text has shadow with #F3EDD1 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F3EDD1; -webkit-box-shadow: 1px 1px 3px 2px #F3EDD1; box-shadow: 1px 1px 3px 2px #F3EDD1; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F3EDD1; -webkit-box-shadow: 1px 1px 3px 2px #F3EDD1; box-shadow:1px 1px 3px 2px #F3EDD1;">
Div content here</div>
This text has color #F3EDD1 on black background.
This text has color #F3EDD1 on white background.
This text has black color on #F3EDD1 background.
This text has white color on #F3EDD1 background.