HEX: #FFE7AA
RGB: (255,231,170)
#FFE7AA contains mainly red and green colors. Web safe color of #FFE7AA is #FFFF99 (or #FF9).
#FFE7AA color RGB value is (255,231,170).
RGB: (255,231,170) (100%,91%,67%)
R 255 of 255 = 100%
G 231 of 255 = 91%
B 170 of 255 = 67%
R + G + B ~ 86%. #FFE7AA is light color.
R + G + B =
255 + 231 + 170 = 656 (100%)
R 255 of 656 ~ 38.87%
G 231 of 656 ~ 35.21%
B 170 of 656 ~ 25.91%
#FFE7AA color CMYK value is (0,9,33,0).
CMYK: (0,9,33,0) C0M9Y33K0 (0%,9%,33%,0%) (0.00/0.09/0.33/0.00)
FF | E7 | AA | |
---|---|---|---|
RGB | 255 | 231 | 170 |
HSL | 43° | 100.00% | 83.33% |
HSB/HSV | 43° | 33.33% | 100.00% |
CMYK | 0.00% | 9.41% | 33.33% |
0.00% |
HEX | FF | E7 | AA |
Decimal | 255 | 231 | 170 |
Binary | 11111111 | 11100111 | 10101010 |
Octal | 377 | 347 | 252 |
Examples of css and html codes for elements with #FFE7AA color. Also use rgb(255,231,170) instead hex code.
.myTextColor { color: #FFE7AA; }
<p style="color:#FFE7AA">This sample text font color is #FFE7AA.</p>
This text font color is #FFE7AA.
.myBgColor { background-color: #FFE7AA; }
<div style="background-color:#FFE7AA">Inner text</div>
This div background color is #FFE7AA.
.myBorderColor { border: 1px solid #FFE7AA; }
<div style="border:3px solid #FFE7AA">Div</div>
This div border color is #FFE7AA.
.myOpacity80 { color: #FFE7AA; opacity: 0.8; }
<p style="color:#FFE7AA;opacity:0.8;">80%</p>
Text with #FFE7AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFE7AA;}
<p style="text-shadow: 3px 3px 1px #FFE7AA">Text here.</p>
This text has shadow with #FFE7AA color.
.textShadow {text-shadow: 3px 3px 1px #FFE7AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFE7AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFE7AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFE7AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFE7AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFE7AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFE7AA; -webkit-box-shadow: 1px 1px 3px 2px #FFE7AA; box-shadow: 1px 1px 3px 2px #FFE7AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFE7AA; -webkit-box-shadow: 1px 1px 3px 2px #FFE7AA; box-shadow:1px 1px 3px 2px #FFE7AA;">
Div content here</div>
This text has color #FFE7AA on black background.
This text has color #FFE7AA on white background.
This text has black color on #FFE7AA background.
This text has white color on #FFE7AA background.