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