HEX: #F0DBEC
RGB: (240,219,236)
#F0DBEC contains red, green and blue colors in about the same proportion. Web safe color of #F0DBEC is #FFCCFF (or #FCF).
#F0DBEC color RGB value is (240,219,236).
RGB: (240,219,236) (94%,86%,93%)
R 240 of 255 = 94%
G 219 of 255 = 86%
B 236 of 255 = 93%
R + G + B ~ 91%. #F0DBEC is light color.
R + G + B =
240 + 219 + 236 = 695 (100%)
R 240 of 695 ~ 34.53%
G 219 of 695 ~ 31.51%
B 236 of 695 ~ 33.96%
#F0DBEC color CMYK value is (0,9,2,6).
CMYK: (0,9,2,6) C0M9Y2K6 (0%,9%,2%,6%) (0.00/0.09/0.02/0.06)
F0 | DB | EC | |
---|---|---|---|
RGB | 240 | 219 | 236 |
HSL | 311° | 41.18% | 90.00% |
HSB/HSV | 311° | 8.75% | 94.12% |
CMYK | 0.00% | 8.75% | 1.67% |
5.88% |
HEX | F0 | DB | EC |
Decimal | 240 | 219 | 236 |
Binary | 11110000 | 11011011 | 11101100 |
Octal | 360 | 333 | 354 |
Examples of css and html codes for elements with #F0DBEC color. Also use rgb(240,219,236) instead hex code.
.myTextColor { color: #F0DBEC; }
<p style="color:#F0DBEC">This sample text font color is #F0DBEC.</p>
This text font color is #F0DBEC.
.myBgColor { background-color: #F0DBEC; }
<div style="background-color:#F0DBEC">Inner text</div>
This div background color is #F0DBEC.
.myBorderColor { border: 1px solid #F0DBEC; }
<div style="border:3px solid #F0DBEC">Div</div>
This div border color is #F0DBEC.
.myOpacity80 { color: #F0DBEC; opacity: 0.8; }
<p style="color:#F0DBEC;opacity:0.8;">80%</p>
Text with #F0DBEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F0DBEC;}
<p style="text-shadow: 3px 3px 1px #F0DBEC">Text here.</p>
This text has shadow with #F0DBEC color.
.textShadow {text-shadow: 3px 3px 1px #F0DBEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F0DBEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #F0DBEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F0DBEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F0DBEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #F0DBEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F0DBEC; -webkit-box-shadow: 1px 1px 3px 2px #F0DBEC; box-shadow: 1px 1px 3px 2px #F0DBEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F0DBEC; -webkit-box-shadow: 1px 1px 3px 2px #F0DBEC; box-shadow:1px 1px 3px 2px #F0DBEC;">
Div content here</div>
This text has color #F0DBEC on black background.
This text has color #F0DBEC on white background.
This text has black color on #F0DBEC background.
This text has white color on #F0DBEC background.