HEX: #F6DBDA
RGB: (246,219,218)
#F6DBDA contains red, green and blue colors in about the same proportion. Web safe color of #F6DBDA is #FFCCCC (or #FCC).
#F6DBDA color RGB value is (246,219,218).
RGB: (246,219,218) (96%,86%,85%)
R 246 of 255 = 96%
G 219 of 255 = 86%
B 218 of 255 = 85%
R + G + B ~ 89%. #F6DBDA is light color.
R + G + B =
246 + 219 + 218 = 683 (100%)
R 246 of 683 ~ 36.02%
G 219 of 683 ~ 32.06%
B 218 of 683 ~ 31.92%
#F6DBDA color CMYK value is (0,11,11,4).
CMYK: (0,11,11,4) C0M11Y11K4 (0%,11%,11%,4%) (0.00/0.11/0.11/0.04)
F6 | DB | DA | |
---|---|---|---|
RGB | 246 | 219 | 218 |
HSL | 2° | 60.87% | 90.98% |
HSB/HSV | 2° | 11.38% | 96.47% |
CMYK | 0.00% | 10.98% | 11.38% |
3.53% |
HEX | F6 | DB | DA |
Decimal | 246 | 219 | 218 |
Binary | 11110110 | 11011011 | 11011010 |
Octal | 366 | 333 | 332 |
Examples of css and html codes for elements with #F6DBDA color. Also use rgb(246,219,218) instead hex code.
.myTextColor { color: #F6DBDA; }
<p style="color:#F6DBDA">This sample text font color is #F6DBDA.</p>
This text font color is #F6DBDA.
.myBgColor { background-color: #F6DBDA; }
<div style="background-color:#F6DBDA">Inner text</div>
This div background color is #F6DBDA.
.myBorderColor { border: 1px solid #F6DBDA; }
<div style="border:3px solid #F6DBDA">Div</div>
This div border color is #F6DBDA.
.myOpacity80 { color: #F6DBDA; opacity: 0.8; }
<p style="color:#F6DBDA;opacity:0.8;">80%</p>
Text with #F6DBDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6DBDA;}
<p style="text-shadow: 3px 3px 1px #F6DBDA">Text here.</p>
This text has shadow with #F6DBDA color.
.textShadow {text-shadow: 3px 3px 1px #F6DBDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6DBDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6DBDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6DBDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6DBDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6DBDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6DBDA; -webkit-box-shadow: 1px 1px 3px 2px #F6DBDA; box-shadow: 1px 1px 3px 2px #F6DBDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6DBDA; -webkit-box-shadow: 1px 1px 3px 2px #F6DBDA; box-shadow:1px 1px 3px 2px #F6DBDA;">
Div content here</div>
This text has color #F6DBDA on black background.
This text has color #F6DBDA on white background.
This text has black color on #F6DBDA background.
This text has white color on #F6DBDA background.