HEX: #FED9B4
RGB: (254,217,180)
#FED9B4 contains mainly red and green colors. Web safe color of #FED9B4 is #FFCCCC (or #FCC).
#FED9B4 color RGB value is (254,217,180).
RGB: (254,217,180) (100%,85%,71%)
R 254 of 255 = 100%
G 217 of 255 = 85%
B 180 of 255 = 71%
R + G + B ~ 85%. #FED9B4 is quite light color.
R + G + B =
254 + 217 + 180 = 651 (100%)
R 254 of 651 ~ 39.02%
G 217 of 651 ~ 33.33%
B 180 of 651 ~ 27.65%
#FED9B4 color CMYK value is (0,15,29,0).
CMYK: (0,15,29,0) C0M15Y29K0 (0%,15%,29%,0%) (0.00/0.15/0.29/0.00)
FE | D9 | B4 | |
---|---|---|---|
RGB | 254 | 217 | 180 |
HSL | 30° | 97.37% | 85.10% |
HSB/HSV | 30° | 29.13% | 99.61% |
CMYK | 0.00% | 14.57% | 29.13% |
0.39% |
HEX | FE | D9 | B4 |
Decimal | 254 | 217 | 180 |
Binary | 11111110 | 11011001 | 10110100 |
Octal | 376 | 331 | 264 |
Examples of css and html codes for elements with #FED9B4 color. Also use rgb(254,217,180) instead hex code.
.myTextColor { color: #FED9B4; }
<p style="color:#FED9B4">This sample text font color is #FED9B4.</p>
This text font color is #FED9B4.
.myBgColor { background-color: #FED9B4; }
<div style="background-color:#FED9B4">Inner text</div>
This div background color is #FED9B4.
.myBorderColor { border: 1px solid #FED9B4; }
<div style="border:3px solid #FED9B4">Div</div>
This div border color is #FED9B4.
.myOpacity80 { color: #FED9B4; opacity: 0.8; }
<p style="color:#FED9B4;opacity:0.8;">80%</p>
Text with #FED9B4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FED9B4;}
<p style="text-shadow: 3px 3px 1px #FED9B4">Text here.</p>
This text has shadow with #FED9B4 color.
.textShadow {text-shadow: 3px 3px 1px #FED9B4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FED9B4, 5px 5px 20px red">Text here.</p>
This text has shadow with #FED9B4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FED9B4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FED9B4, Direction=45, Strength=4)">Text</p>
This text has shadow with #FED9B4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FED9B4; -webkit-box-shadow: 1px 1px 3px 2px #FED9B4; box-shadow: 1px 1px 3px 2px #FED9B4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FED9B4; -webkit-box-shadow: 1px 1px 3px 2px #FED9B4; box-shadow:1px 1px 3px 2px #FED9B4;">
Div content here</div>
This text has color #FED9B4 on black background.
This text has color #FED9B4 on white background.
This text has black color on #FED9B4 background.
This text has white color on #FED9B4 background.