HEX: #F0EDDD
RGB: (240,237,221)
#F0EDDD contains red, green and blue colors in about the same proportion. Web safe color of #F0EDDD is #FFFFCC (or #FFC).
#F0EDDD color RGB value is (240,237,221).
RGB: (240,237,221) (94%,93%,87%)
R 240 of 255 = 94%
G 237 of 255 = 93%
B 221 of 255 = 87%
R + G + B ~ 91%. #F0EDDD is light color.
R + G + B =
240 + 237 + 221 = 698 (100%)
R 240 of 698 ~ 34.38%
G 237 of 698 ~ 33.95%
B 221 of 698 ~ 31.66%
#F0EDDD color CMYK value is (0,1,8,6).
CMYK: (0,1,8,6) C0M1Y8K6 (0%,1%,8%,6%) (0.00/0.01/0.08/0.06)
F0 | ED | DD | |
---|---|---|---|
RGB | 240 | 237 | 221 |
HSL | 51° | 38.78% | 90.39% |
HSB/HSV | 51° | 7.92% | 94.12% |
CMYK | 0.00% | 1.25% | 7.92% |
5.88% |
HEX | F0 | ED | DD |
Decimal | 240 | 237 | 221 |
Binary | 11110000 | 11101101 | 11011101 |
Octal | 360 | 355 | 335 |
Examples of css and html codes for elements with #F0EDDD color. Also use rgb(240,237,221) instead hex code.
.myTextColor { color: #F0EDDD; }
<p style="color:#F0EDDD">This sample text font color is #F0EDDD.</p>
This text font color is #F0EDDD.
.myBgColor { background-color: #F0EDDD; }
<div style="background-color:#F0EDDD">Inner text</div>
This div background color is #F0EDDD.
.myBorderColor { border: 1px solid #F0EDDD; }
<div style="border:3px solid #F0EDDD">Div</div>
This div border color is #F0EDDD.
.myOpacity80 { color: #F0EDDD; opacity: 0.8; }
<p style="color:#F0EDDD;opacity:0.8;">80%</p>
Text with #F0EDDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F0EDDD;}
<p style="text-shadow: 3px 3px 1px #F0EDDD">Text here.</p>
This text has shadow with #F0EDDD color.
.textShadow {text-shadow: 3px 3px 1px #F0EDDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F0EDDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #F0EDDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F0EDDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F0EDDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #F0EDDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F0EDDD; -webkit-box-shadow: 1px 1px 3px 2px #F0EDDD; box-shadow: 1px 1px 3px 2px #F0EDDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F0EDDD; -webkit-box-shadow: 1px 1px 3px 2px #F0EDDD; box-shadow:1px 1px 3px 2px #F0EDDD;">
Div content here</div>
This text has color #F0EDDD on black background.
This text has color #F0EDDD on white background.
This text has black color on #F0EDDD background.
This text has white color on #F0EDDD background.