HEX: #FEC586
RGB: (254,197,134)
#FEC586 contains mainly red and green colors. Web safe color of #FEC586 is #FFCC99 (or #FC9).
#FEC586 color RGB value is (254,197,134).
RGB: (254,197,134) (100%,77%,53%)
R 254 of 255 = 100%
G 197 of 255 = 77%
B 134 of 255 = 53%
R + G + B ~ 77%. #FEC586 is quite light color.
R + G + B =
254 + 197 + 134 = 585 (100%)
R 254 of 585 ~ 43.42%
G 197 of 585 ~ 33.68%
B 134 of 585 ~ 22.91%
#FEC586 color CMYK value is (0,22,47,0).
CMYK: (0,22,47,0) C0M22Y47K0 (0%,22%,47%,0%) (0.00/0.22/0.47/0.00)
FE | C5 | 86 | |
---|---|---|---|
RGB | 254 | 197 | 134 |
HSL | 32° | 98.36% | 76.08% |
HSB/HSV | 32° | 47.24% | 99.61% |
CMYK | 0.00% | 22.44% | 47.24% |
0.39% |
HEX | FE | C5 | 86 |
Decimal | 254 | 197 | 134 |
Binary | 11111110 | 11000101 | 10000110 |
Octal | 376 | 305 | 206 |
Examples of css and html codes for elements with #FEC586 color. Also use rgb(254,197,134) instead hex code.
.myTextColor { color: #FEC586; }
<p style="color:#FEC586">This sample text font color is #FEC586.</p>
This text font color is #FEC586.
.myBgColor { background-color: #FEC586; }
<div style="background-color:#FEC586">Inner text</div>
This div background color is #FEC586.
.myBorderColor { border: 1px solid #FEC586; }
<div style="border:3px solid #FEC586">Div</div>
This div border color is #FEC586.
.myOpacity80 { color: #FEC586; opacity: 0.8; }
<p style="color:#FEC586;opacity:0.8;">80%</p>
Text with #FEC586 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FEC586;}
<p style="text-shadow: 3px 3px 1px #FEC586">Text here.</p>
This text has shadow with #FEC586 color.
.textShadow {text-shadow: 3px 3px 1px #FEC586, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FEC586, 5px 5px 20px red">Text here.</p>
This text has shadow with #FEC586 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FEC586, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FEC586, Direction=45, Strength=4)">Text</p>
This text has shadow with #FEC586 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FEC586; -webkit-box-shadow: 1px 1px 3px 2px #FEC586; box-shadow: 1px 1px 3px 2px #FEC586; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FEC586; -webkit-box-shadow: 1px 1px 3px 2px #FEC586; box-shadow:1px 1px 3px 2px #FEC586;">
Div content here</div>
This text has color #FEC586 on black background.
This text has color #FEC586 on white background.
This text has black color on #FEC586 background.
This text has white color on #FEC586 background.