HEX: #FAE7DD
RGB: (250,231,221)
#FAE7DD contains red, green and blue colors in about the same proportion. Web safe color of #FAE7DD is #FFFFCC (or #FFC).
#FAE7DD color RGB value is (250,231,221).
RGB: (250,231,221) (98%,91%,87%)
R 250 of 255 = 98%
G 231 of 255 = 91%
B 221 of 255 = 87%
R + G + B ~ 92%. #FAE7DD is light color.
R + G + B =
250 + 231 + 221 = 702 (100%)
R 250 of 702 ~ 35.61%
G 231 of 702 ~ 32.91%
B 221 of 702 ~ 31.48%
#FAE7DD color CMYK value is (0,8,12,2).
CMYK: (0,8,12,2) C0M8Y12K2 (0%,8%,12%,2%) (0.00/0.08/0.12/0.02)
FA | E7 | DD | |
---|---|---|---|
RGB | 250 | 231 | 221 |
HSL | 21° | 74.36% | 92.35% |
HSB/HSV | 21° | 11.60% | 98.04% |
CMYK | 0.00% | 7.60% | 11.60% |
1.96% |
HEX | FA | E7 | DD |
Decimal | 250 | 231 | 221 |
Binary | 11111010 | 11100111 | 11011101 |
Octal | 372 | 347 | 335 |
Examples of css and html codes for elements with #FAE7DD color. Also use rgb(250,231,221) instead hex code.
.myTextColor { color: #FAE7DD; }
<p style="color:#FAE7DD">This sample text font color is #FAE7DD.</p>
This text font color is #FAE7DD.
.myBgColor { background-color: #FAE7DD; }
<div style="background-color:#FAE7DD">Inner text</div>
This div background color is #FAE7DD.
.myBorderColor { border: 1px solid #FAE7DD; }
<div style="border:3px solid #FAE7DD">Div</div>
This div border color is #FAE7DD.
.myOpacity80 { color: #FAE7DD; opacity: 0.8; }
<p style="color:#FAE7DD;opacity:0.8;">80%</p>
Text with #FAE7DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAE7DD;}
<p style="text-shadow: 3px 3px 1px #FAE7DD">Text here.</p>
This text has shadow with #FAE7DD color.
.textShadow {text-shadow: 3px 3px 1px #FAE7DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAE7DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAE7DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAE7DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAE7DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAE7DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAE7DD; -webkit-box-shadow: 1px 1px 3px 2px #FAE7DD; box-shadow: 1px 1px 3px 2px #FAE7DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAE7DD; -webkit-box-shadow: 1px 1px 3px 2px #FAE7DD; box-shadow:1px 1px 3px 2px #FAE7DD;">
Div content here</div>
This text has color #FAE7DD on black background.
This text has color #FAE7DD on white background.
This text has black color on #FAE7DD background.
This text has white color on #FAE7DD background.