HEX: #FCDFF6
RGB: (252,223,246)
#FCDFF6 contains red, green and blue colors in about the same proportion. Web safe color of #FCDFF6 is #FFCCFF (or #FCF).
#FCDFF6 color RGB value is (252,223,246).
RGB: (252,223,246) (99%,87%,96%)
R 252 of 255 = 99%
G 223 of 255 = 87%
B 246 of 255 = 96%
R + G + B ~ 94%. #FCDFF6 is light color.
R + G + B =
252 + 223 + 246 = 721 (100%)
R 252 of 721 ~ 34.95%
G 223 of 721 ~ 30.93%
B 246 of 721 ~ 34.12%
#FCDFF6 color CMYK value is (0,12,2,1).
CMYK: (0,12,2,1) C0M12Y2K1 (0%,12%,2%,1%) (0.00/0.12/0.02/0.01)
FC | DF | F6 | |
---|---|---|---|
RGB | 252 | 223 | 246 |
HSL | 312° | 82.86% | 93.14% |
HSB/HSV | 312° | 11.51% | 98.82% |
CMYK | 0.00% | 11.51% | 2.38% |
1.18% |
HEX | FC | DF | F6 |
Decimal | 252 | 223 | 246 |
Binary | 11111100 | 11011111 | 11110110 |
Octal | 374 | 337 | 366 |
Examples of css and html codes for elements with #FCDFF6 color. Also use rgb(252,223,246) instead hex code.
.myTextColor { color: #FCDFF6; }
<p style="color:#FCDFF6">This sample text font color is #FCDFF6.</p>
This text font color is #FCDFF6.
.myBgColor { background-color: #FCDFF6; }
<div style="background-color:#FCDFF6">Inner text</div>
This div background color is #FCDFF6.
.myBorderColor { border: 1px solid #FCDFF6; }
<div style="border:3px solid #FCDFF6">Div</div>
This div border color is #FCDFF6.
.myOpacity80 { color: #FCDFF6; opacity: 0.8; }
<p style="color:#FCDFF6;opacity:0.8;">80%</p>
Text with #FCDFF6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FCDFF6;}
<p style="text-shadow: 3px 3px 1px #FCDFF6">Text here.</p>
This text has shadow with #FCDFF6 color.
.textShadow {text-shadow: 3px 3px 1px #FCDFF6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FCDFF6, 5px 5px 20px red">Text here.</p>
This text has shadow with #FCDFF6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FCDFF6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FCDFF6, Direction=45, Strength=4)">Text</p>
This text has shadow with #FCDFF6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FCDFF6; -webkit-box-shadow: 1px 1px 3px 2px #FCDFF6; box-shadow: 1px 1px 3px 2px #FCDFF6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FCDFF6; -webkit-box-shadow: 1px 1px 3px 2px #FCDFF6; box-shadow:1px 1px 3px 2px #FCDFF6;">
Div content here</div>
This text has color #FCDFF6 on black background.
This text has color #FCDFF6 on white background.
This text has black color on #FCDFF6 background.
This text has white color on #FCDFF6 background.