HEX: #F0C7DE
RGB: (240,199,222)
#F0C7DE contains red, green and blue colors in about the same proportion. Web safe color of #F0C7DE is #FFCCCC (or #FCC).
#F0C7DE color RGB value is (240,199,222).
RGB: (240,199,222) (94%,78%,87%)
R 240 of 255 = 94%
G 199 of 255 = 78%
B 222 of 255 = 87%
R + G + B ~ 86%. #F0C7DE is light color.
R + G + B =
240 + 199 + 222 = 661 (100%)
R 240 of 661 ~ 36.31%
G 199 of 661 ~ 30.11%
B 222 of 661 ~ 33.59%
#F0C7DE color CMYK value is (0,17,8,6).
CMYK: (0,17,8,6) C0M17Y8K6 (0%,17%,8%,6%) (0.00/0.17/0.08/0.06)
F0 | C7 | DE | |
---|---|---|---|
RGB | 240 | 199 | 222 |
HSL | 326° | 57.75% | 86.08% |
HSB/HSV | 326° | 17.08% | 94.12% |
CMYK | 0.00% | 17.08% | 7.50% |
5.88% |
HEX | F0 | C7 | DE |
Decimal | 240 | 199 | 222 |
Binary | 11110000 | 11000111 | 11011110 |
Octal | 360 | 307 | 336 |
Examples of css and html codes for elements with #F0C7DE color. Also use rgb(240,199,222) instead hex code.
.myTextColor { color: #F0C7DE; }
<p style="color:#F0C7DE">This sample text font color is #F0C7DE.</p>
This text font color is #F0C7DE.
.myBgColor { background-color: #F0C7DE; }
<div style="background-color:#F0C7DE">Inner text</div>
This div background color is #F0C7DE.
.myBorderColor { border: 1px solid #F0C7DE; }
<div style="border:3px solid #F0C7DE">Div</div>
This div border color is #F0C7DE.
.myOpacity80 { color: #F0C7DE; opacity: 0.8; }
<p style="color:#F0C7DE;opacity:0.8;">80%</p>
Text with #F0C7DE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F0C7DE;}
<p style="text-shadow: 3px 3px 1px #F0C7DE">Text here.</p>
This text has shadow with #F0C7DE color.
.textShadow {text-shadow: 3px 3px 1px #F0C7DE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F0C7DE, 5px 5px 20px red">Text here.</p>
This text has shadow with #F0C7DE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F0C7DE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F0C7DE, Direction=45, Strength=4)">Text</p>
This text has shadow with #F0C7DE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F0C7DE; -webkit-box-shadow: 1px 1px 3px 2px #F0C7DE; box-shadow: 1px 1px 3px 2px #F0C7DE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F0C7DE; -webkit-box-shadow: 1px 1px 3px 2px #F0C7DE; box-shadow:1px 1px 3px 2px #F0C7DE;">
Div content here</div>
This text has color #F0C7DE on black background.
This text has color #F0C7DE on white background.
This text has black color on #F0C7DE background.
This text has white color on #F0C7DE background.