HEX: #FEA886
RGB: (254,168,134)
#FEA886 contains mainly red color. Web safe color of #FEA886 is #FF9999 (or #F99).
#FEA886 color RGB value is (254,168,134).
RGB: (254,168,134) (100%,66%,53%)
R 254 of 255 = 100%
G 168 of 255 = 66%
B 134 of 255 = 53%
R + G + B ~ 73%. #FEA886 is quite light color.
R + G + B =
254 + 168 + 134 = 556 (100%)
R 254 of 556 ~ 45.68%
G 168 of 556 ~ 30.22%
B 134 of 556 ~ 24.1%
#FEA886 color CMYK value is (0,34,47,0).
CMYK: (0,34,47,0) C0M34Y47K0 (0%,34%,47%,0%) (0.00/0.34/0.47/0.00)
FE | A8 | 86 | |
---|---|---|---|
RGB | 254 | 168 | 134 |
HSL | 17° | 98.36% | 76.08% |
HSB/HSV | 17° | 47.24% | 99.61% |
CMYK | 0.00% | 33.86% | 47.24% |
0.39% |
HEX | FE | A8 | 86 |
Decimal | 254 | 168 | 134 |
Binary | 11111110 | 10101000 | 10000110 |
Octal | 376 | 250 | 206 |
Examples of css and html codes for elements with #FEA886 color. Also use rgb(254,168,134) instead hex code.
.myTextColor { color: #FEA886; }
<p style="color:#FEA886">This sample text font color is #FEA886.</p>
This text font color is #FEA886.
.myBgColor { background-color: #FEA886; }
<div style="background-color:#FEA886">Inner text</div>
This div background color is #FEA886.
.myBorderColor { border: 1px solid #FEA886; }
<div style="border:3px solid #FEA886">Div</div>
This div border color is #FEA886.
.myOpacity80 { color: #FEA886; opacity: 0.8; }
<p style="color:#FEA886;opacity:0.8;">80%</p>
Text with #FEA886 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEA886;}
<p style="text-shadow: 3px 3px 1px #FEA886">Text here.</p>
This text has shadow with #FEA886 color.
.textShadow {text-shadow: 3px 3px 1px #FEA886, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEA886, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEA886 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEA886, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEA886, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEA886 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEA886; -webkit-box-shadow: 1px 1px 3px 2px #FEA886; box-shadow: 1px 1px 3px 2px #FEA886; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEA886; -webkit-box-shadow: 1px 1px 3px 2px #FEA886; box-shadow:1px 1px 3px 2px #FEA886;">
Div content here</div>
This text has color #FEA886 on black background.
This text has color #FEA886 on white background.
This text has black color on #FEA886 background.
This text has white color on #FEA886 background.