HEX: #F0FFDE
RGB: (240,255,222)
#F0FFDE contains red, green and blue colors in about the same proportion. Web safe color of #F0FFDE is #FFFFCC (or #FFC).
#F0FFDE color RGB value is (240,255,222).
RGB: (240,255,222) (94%,100%,87%)
R 240 of 255 = 94%
G 255 of 255 = 100%
B 222 of 255 = 87%
R + G + B ~ 94%. #F0FFDE is light color.
R + G + B =
240 + 255 + 222 = 717 (100%)
R 240 of 717 ~ 33.47%
G 255 of 717 ~ 35.56%
B 222 of 717 ~ 30.96%
#F0FFDE 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 | FF | DE | |
---|---|---|---|
RGB | 240 | 255 | 222 |
HSL | 87° | 100.00% | 93.53% |
HSB/HSV | 87° | 12.94% | 100.00% |
CMYK | 5.88% | 0.00% | 12.94% |
0.00% |
HEX | F0 | FF | DE |
Decimal | 240 | 255 | 222 |
Binary | 11110000 | 11111111 | 11011110 |
Octal | 360 | 377 | 336 |
Examples of css and html codes for elements with #F0FFDE color. Also use rgb(240,255,222) instead hex code.
.myTextColor { color: #F0FFDE; }
<p style="color:#F0FFDE">This sample text font color is #F0FFDE.</p>
This text font color is #F0FFDE.
.myBgColor { background-color: #F0FFDE; }
<div style="background-color:#F0FFDE">Inner text</div>
This div background color is #F0FFDE.
.myBorderColor { border: 1px solid #F0FFDE; }
<div style="border:3px solid #F0FFDE">Div</div>
This div border color is #F0FFDE.
.myOpacity80 { color: #F0FFDE; opacity: 0.8; }
<p style="color:#F0FFDE;opacity:0.8;">80%</p>
Text with #F0FFDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F0FFDE;}
<p style="text-shadow: 3px 3px 1px #F0FFDE">Text here.</p>
This text has shadow with #F0FFDE color.
.textShadow {text-shadow: 3px 3px 1px #F0FFDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F0FFDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #F0FFDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F0FFDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F0FFDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #F0FFDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F0FFDE; -webkit-box-shadow: 1px 1px 3px 2px #F0FFDE; box-shadow: 1px 1px 3px 2px #F0FFDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F0FFDE; -webkit-box-shadow: 1px 1px 3px 2px #F0FFDE; box-shadow:1px 1px 3px 2px #F0FFDE;">
Div content here</div>
This text has color #F0FFDE on black background.
This text has color #F0FFDE on white background.
This text has black color on #F0FFDE background.
This text has white color on #F0FFDE background.