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