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