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