HEX: #F7C7DB
RGB: (247,199,219)
#F7C7DB contains red, green and blue colors in about the same proportion. Web safe color of #F7C7DB is #FFCCCC (or #FCC).
#F7C7DB color RGB value is (247,199,219).
RGB: (247,199,219) (97%,78%,86%)
R 247 of 255 = 97%
G 199 of 255 = 78%
B 219 of 255 = 86%
R + G + B ~ 87%. #F7C7DB is light color.
R + G + B =
247 + 199 + 219 = 665 (100%)
R 247 of 665 ~ 37.14%
G 199 of 665 ~ 29.92%
B 219 of 665 ~ 32.93%
#F7C7DB color CMYK value is (0,19,11,3).
CMYK: (0,19,11,3) C0M19Y11K3 (0%,19%,11%,3%) (0.00/0.19/0.11/0.03)
F7 | C7 | DB | |
---|---|---|---|
RGB | 247 | 199 | 219 |
HSL | 335° | 75.00% | 87.45% |
HSB/HSV | 335° | 19.43% | 96.86% |
CMYK | 0.00% | 19.43% | 11.34% |
3.14% |
HEX | F7 | C7 | DB |
Decimal | 247 | 199 | 219 |
Binary | 11110111 | 11000111 | 11011011 |
Octal | 367 | 307 | 333 |
Examples of css and html codes for elements with #F7C7DB color. Also use rgb(247,199,219) instead hex code.
.myTextColor { color: #F7C7DB; }
<p style="color:#F7C7DB">This sample text font color is #F7C7DB.</p>
This text font color is #F7C7DB.
.myBgColor { background-color: #F7C7DB; }
<div style="background-color:#F7C7DB">Inner text</div>
This div background color is #F7C7DB.
.myBorderColor { border: 1px solid #F7C7DB; }
<div style="border:3px solid #F7C7DB">Div</div>
This div border color is #F7C7DB.
.myOpacity80 { color: #F7C7DB; opacity: 0.8; }
<p style="color:#F7C7DB;opacity:0.8;">80%</p>
Text with #F7C7DB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F7C7DB;}
<p style="text-shadow: 3px 3px 1px #F7C7DB">Text here.</p>
This text has shadow with #F7C7DB color.
.textShadow {text-shadow: 3px 3px 1px #F7C7DB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F7C7DB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F7C7DB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F7C7DB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F7C7DB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F7C7DB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F7C7DB; -webkit-box-shadow: 1px 1px 3px 2px #F7C7DB; box-shadow: 1px 1px 3px 2px #F7C7DB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F7C7DB; -webkit-box-shadow: 1px 1px 3px 2px #F7C7DB; box-shadow:1px 1px 3px 2px #F7C7DB;">
Div content here</div>
This text has color #F7C7DB on black background.
This text has color #F7C7DB on white background.
This text has black color on #F7C7DB background.
This text has white color on #F7C7DB background.