HEX: #F0FDDB
RGB: (240,253,219)
#F0FDDB contains red, green and blue colors in about the same proportion. Web safe color of #F0FDDB is #FFFFCC (or #FFC).
#F0FDDB color RGB value is (240,253,219).
RGB: (240,253,219) (94%,99%,86%)
R 240 of 255 = 94%
G 253 of 255 = 99%
B 219 of 255 = 86%
R + G + B ~ 93%. #F0FDDB is light color.
R + G + B =
240 + 253 + 219 = 712 (100%)
R 240 of 712 ~ 33.71%
G 253 of 712 ~ 35.53%
B 219 of 712 ~ 30.76%
#F0FDDB color CMYK value is (5,0,13,1).
CMYK: (5,0,13,1) C5M0Y13K1 (5%,0%,13%,1%) (0.05/0.00/0.13/0.01)
F0 | FD | DB | |
---|---|---|---|
RGB | 240 | 253 | 219 |
HSL | 83° | 89.47% | 92.55% |
HSB/HSV | 83° | 13.44% | 99.22% |
CMYK | 5.14% | 0.00% | 13.44% |
0.78% |
HEX | F0 | FD | DB |
Decimal | 240 | 253 | 219 |
Binary | 11110000 | 11111101 | 11011011 |
Octal | 360 | 375 | 333 |
Examples of css and html codes for elements with #F0FDDB color. Also use rgb(240,253,219) instead hex code.
.myTextColor { color: #F0FDDB; }
<p style="color:#F0FDDB">This sample text font color is #F0FDDB.</p>
This text font color is #F0FDDB.
.myBgColor { background-color: #F0FDDB; }
<div style="background-color:#F0FDDB">Inner text</div>
This div background color is #F0FDDB.
.myBorderColor { border: 1px solid #F0FDDB; }
<div style="border:3px solid #F0FDDB">Div</div>
This div border color is #F0FDDB.
.myOpacity80 { color: #F0FDDB; opacity: 0.8; }
<p style="color:#F0FDDB;opacity:0.8;">80%</p>
Text with #F0FDDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F0FDDB;}
<p style="text-shadow: 3px 3px 1px #F0FDDB">Text here.</p>
This text has shadow with #F0FDDB color.
.textShadow {text-shadow: 3px 3px 1px #F0FDDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F0FDDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F0FDDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F0FDDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F0FDDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F0FDDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F0FDDB; -webkit-box-shadow: 1px 1px 3px 2px #F0FDDB; box-shadow: 1px 1px 3px 2px #F0FDDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F0FDDB; -webkit-box-shadow: 1px 1px 3px 2px #F0FDDB; box-shadow:1px 1px 3px 2px #F0FDDB;">
Div content here</div>
This text has color #F0FDDB on black background.
This text has color #F0FDDB on white background.
This text has black color on #F0FDDB background.
This text has white color on #F0FDDB background.