HEX: #F0FEDC
RGB: (240,254,220)
#F0FEDC contains red, green and blue colors in about the same proportion. Web safe color of #F0FEDC is #FFFFCC (or #FFC).
#F0FEDC color RGB value is (240,254,220).
RGB: (240,254,220) (94%,100%,86%)
R 240 of 255 = 94%
G 254 of 255 = 100%
B 220 of 255 = 86%
R + G + B ~ 93%. #F0FEDC is light color.
R + G + B =
240 + 254 + 220 = 714 (100%)
R 240 of 714 ~ 33.61%
G 254 of 714 ~ 35.57%
B 220 of 714 ~ 30.81%
#F0FEDC color CMYK value is (6,0,13,0).
CMYK: (6,0,13,0) C6M0Y13K0 (6%,0%,13%,0%) (0.06/0.00/0.13/0.00)
F0 | FE | DC | |
---|---|---|---|
RGB | 240 | 254 | 220 |
HSL | 85° | 94.44% | 92.94% |
HSB/HSV | 85° | 13.39% | 99.61% |
CMYK | 5.51% | 0.00% | 13.39% |
0.39% |
HEX | F0 | FE | DC |
Decimal | 240 | 254 | 220 |
Binary | 11110000 | 11111110 | 11011100 |
Octal | 360 | 376 | 334 |
Examples of css and html codes for elements with #F0FEDC color. Also use rgb(240,254,220) instead hex code.
.myTextColor { color: #F0FEDC; }
<p style="color:#F0FEDC">This sample text font color is #F0FEDC.</p>
This text font color is #F0FEDC.
.myBgColor { background-color: #F0FEDC; }
<div style="background-color:#F0FEDC">Inner text</div>
This div background color is #F0FEDC.
.myBorderColor { border: 1px solid #F0FEDC; }
<div style="border:3px solid #F0FEDC">Div</div>
This div border color is #F0FEDC.
.myOpacity80 { color: #F0FEDC; opacity: 0.8; }
<p style="color:#F0FEDC;opacity:0.8;">80%</p>
Text with #F0FEDC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F0FEDC;}
<p style="text-shadow: 3px 3px 1px #F0FEDC">Text here.</p>
This text has shadow with #F0FEDC color.
.textShadow {text-shadow: 3px 3px 1px #F0FEDC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F0FEDC, 5px 5px 20px red">Text here.</p>
This text has shadow with #F0FEDC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F0FEDC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F0FEDC, Direction=45, Strength=4)">Text</p>
This text has shadow with #F0FEDC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F0FEDC; -webkit-box-shadow: 1px 1px 3px 2px #F0FEDC; box-shadow: 1px 1px 3px 2px #F0FEDC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F0FEDC; -webkit-box-shadow: 1px 1px 3px 2px #F0FEDC; box-shadow:1px 1px 3px 2px #F0FEDC;">
Div content here</div>
This text has color #F0FEDC on black background.
This text has color #F0FEDC on white background.
This text has black color on #F0FEDC background.
This text has white color on #F0FEDC background.