HEX: #FFED8D
RGB: (255,237,141)
#FFED8D contains mainly red and green colors. Web safe color of #FFED8D is #FFFF99 (or #FF9).
#FFED8D color RGB value is (255,237,141).
RGB: (255,237,141) (100%,93%,55%)
R 255 of 255 = 100%
G 237 of 255 = 93%
B 141 of 255 = 55%
R + G + B ~ 83%. #FFED8D is quite light color.
R + G + B =
255 + 237 + 141 = 633 (100%)
R 255 of 633 ~ 40.28%
G 237 of 633 ~ 37.44%
B 141 of 633 ~ 22.27%
#FFED8D color CMYK value is (0,7,45,0).
CMYK: (0,7,45,0) C0M7Y45K0 (0%,7%,45%,0%) (0.00/0.07/0.45/0.00)
FF | ED | 8D | |
---|---|---|---|
RGB | 255 | 237 | 141 |
HSL | 51° | 100.00% | 77.65% |
HSB/HSV | 51° | 44.71% | 100.00% |
CMYK | 0.00% | 7.06% | 44.71% |
0.00% |
HEX | FF | ED | 8D |
Decimal | 255 | 237 | 141 |
Binary | 11111111 | 11101101 | 10001101 |
Octal | 377 | 355 | 215 |
Examples of css and html codes for elements with #FFED8D color. Also use rgb(255,237,141) instead hex code.
.myTextColor { color: #FFED8D; }
<p style="color:#FFED8D">This sample text font color is #FFED8D.</p>
This text font color is #FFED8D.
.myBgColor { background-color: #FFED8D; }
<div style="background-color:#FFED8D">Inner text</div>
This div background color is #FFED8D.
.myBorderColor { border: 1px solid #FFED8D; }
<div style="border:3px solid #FFED8D">Div</div>
This div border color is #FFED8D.
.myOpacity80 { color: #FFED8D; opacity: 0.8; }
<p style="color:#FFED8D;opacity:0.8;">80%</p>
Text with #FFED8D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFED8D;}
<p style="text-shadow: 3px 3px 1px #FFED8D">Text here.</p>
This text has shadow with #FFED8D color.
.textShadow {text-shadow: 3px 3px 1px #FFED8D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFED8D, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFED8D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFED8D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFED8D, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFED8D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFED8D; -webkit-box-shadow: 1px 1px 3px 2px #FFED8D; box-shadow: 1px 1px 3px 2px #FFED8D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFED8D; -webkit-box-shadow: 1px 1px 3px 2px #FFED8D; box-shadow:1px 1px 3px 2px #FFED8D;">
Div content here</div>
This text has color #FFED8D on black background.
This text has color #FFED8D on white background.
This text has black color on #FFED8D background.
This text has white color on #FFED8D background.