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