HEX: #FADCEF
RGB: (250,220,239)
#FADCEF contains red, green and blue colors in about the same proportion. Web safe color of #FADCEF is #FFCCFF (or #FCF).
#FADCEF color RGB value is (250,220,239).
RGB: (250,220,239) (98%,86%,94%)
R 250 of 255 = 98%
G 220 of 255 = 86%
B 239 of 255 = 94%
R + G + B ~ 93%. #FADCEF is light color.
R + G + B =
250 + 220 + 239 = 709 (100%)
R 250 of 709 ~ 35.26%
G 220 of 709 ~ 31.03%
B 239 of 709 ~ 33.71%
#FADCEF color CMYK value is (0,12,4,2).
CMYK: (0,12,4,2) C0M12Y4K2 (0%,12%,4%,2%) (0.00/0.12/0.04/0.02)
FA | DC | EF | |
---|---|---|---|
RGB | 250 | 220 | 239 |
HSL | 322° | 75.00% | 92.16% |
HSB/HSV | 322° | 12.00% | 98.04% |
CMYK | 0.00% | 12.00% | 4.40% |
1.96% |
HEX | FA | DC | EF |
Decimal | 250 | 220 | 239 |
Binary | 11111010 | 11011100 | 11101111 |
Octal | 372 | 334 | 357 |
Examples of css and html codes for elements with #FADCEF color. Also use rgb(250,220,239) instead hex code.
.myTextColor { color: #FADCEF; }
<p style="color:#FADCEF">This sample text font color is #FADCEF.</p>
This text font color is #FADCEF.
.myBgColor { background-color: #FADCEF; }
<div style="background-color:#FADCEF">Inner text</div>
This div background color is #FADCEF.
.myBorderColor { border: 1px solid #FADCEF; }
<div style="border:3px solid #FADCEF">Div</div>
This div border color is #FADCEF.
.myOpacity80 { color: #FADCEF; opacity: 0.8; }
<p style="color:#FADCEF;opacity:0.8;">80%</p>
Text with #FADCEF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FADCEF;}
<p style="text-shadow: 3px 3px 1px #FADCEF">Text here.</p>
This text has shadow with #FADCEF color.
.textShadow {text-shadow: 3px 3px 1px #FADCEF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FADCEF, 5px 5px 20px red">Text here.</p>
This text has shadow with #FADCEF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FADCEF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FADCEF, Direction=45, Strength=4)">Text</p>
This text has shadow with #FADCEF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FADCEF; -webkit-box-shadow: 1px 1px 3px 2px #FADCEF; box-shadow: 1px 1px 3px 2px #FADCEF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FADCEF; -webkit-box-shadow: 1px 1px 3px 2px #FADCEF; box-shadow:1px 1px 3px 2px #FADCEF;">
Div content here</div>
This text has color #FADCEF on black background.
This text has color #FADCEF on white background.
This text has black color on #FADCEF background.
This text has white color on #FADCEF background.