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