HEX: #FDAE8E
RGB: (253,174,142)
#FDAE8E contains mainly red color. Web safe color of #FDAE8E is #FF9999 (or #F99).
#FDAE8E color RGB value is (253,174,142).
RGB: (253,174,142) (99%,68%,56%)
R 253 of 255 = 99%
G 174 of 255 = 68%
B 142 of 255 = 56%
R + G + B ~ 74%. #FDAE8E is quite light color.
R + G + B =
253 + 174 + 142 = 569 (100%)
R 253 of 569 ~ 44.46%
G 174 of 569 ~ 30.58%
B 142 of 569 ~ 24.96%
#FDAE8E color CMYK value is (0,31,44,1).
CMYK: (0,31,44,1) C0M31Y44K1 (0%,31%,44%,1%) (0.00/0.31/0.44/0.01)
FD | AE | 8E | |
---|---|---|---|
RGB | 253 | 174 | 142 |
HSL | 17° | 96.52% | 77.45% |
HSB/HSV | 17° | 43.87% | 99.22% |
CMYK | 0.00% | 31.23% | 43.87% |
0.78% |
HEX | FD | AE | 8E |
Decimal | 253 | 174 | 142 |
Binary | 11111101 | 10101110 | 10001110 |
Octal | 375 | 256 | 216 |
Examples of css and html codes for elements with #FDAE8E color. Also use rgb(253,174,142) instead hex code.
.myTextColor { color: #FDAE8E; }
<p style="color:#FDAE8E">This sample text font color is #FDAE8E.</p>
This text font color is #FDAE8E.
.myBgColor { background-color: #FDAE8E; }
<div style="background-color:#FDAE8E">Inner text</div>
This div background color is #FDAE8E.
.myBorderColor { border: 1px solid #FDAE8E; }
<div style="border:3px solid #FDAE8E">Div</div>
This div border color is #FDAE8E.
.myOpacity80 { color: #FDAE8E; opacity: 0.8; }
<p style="color:#FDAE8E;opacity:0.8;">80%</p>
Text with #FDAE8E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDAE8E;}
<p style="text-shadow: 3px 3px 1px #FDAE8E">Text here.</p>
This text has shadow with #FDAE8E color.
.textShadow {text-shadow: 3px 3px 1px #FDAE8E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDAE8E, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDAE8E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDAE8E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDAE8E, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDAE8E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDAE8E; -webkit-box-shadow: 1px 1px 3px 2px #FDAE8E; box-shadow: 1px 1px 3px 2px #FDAE8E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDAE8E; -webkit-box-shadow: 1px 1px 3px 2px #FDAE8E; box-shadow:1px 1px 3px 2px #FDAE8E;">
Div content here</div>
This text has color #FDAE8E on black background.
This text has color #FDAE8E on white background.
This text has black color on #FDAE8E background.
This text has white color on #FDAE8E background.