HEX: #EDDE4D
RGB: (237,222,77)
#EDDE4D contains mainly red and green colors. Web safe color of #EDDE4D is #FFCC33 (or #FC3).
#EDDE4D color RGB value is (237,222,77).
RGB: (237,222,77) (93%,87%,30%)
R 237 of 255 = 93%
G 222 of 255 = 87%
B 77 of 255 = 30%
R + G + B ~ 70%. #EDDE4D is quite light color.
R + G + B =
237 + 222 + 77 = 536 (100%)
R 237 of 536 ~ 44.22%
G 222 of 536 ~ 41.42%
B 77 of 536 ~ 14.37%
#EDDE4D color CMYK value is (0,6,68,7).
CMYK: (0,6,68,7) C0M6Y68K7 (0%,6%,68%,7%) (0.00/0.06/0.68/0.07)
ED | DE | 4D | |
---|---|---|---|
RGB | 237 | 222 | 77 |
HSL | 54° | 81.63% | 61.57% |
HSB/HSV | 54° | 67.51% | 92.94% |
CMYK | 0.00% | 6.33% | 67.51% |
7.06% |
HEX | ED | DE | 4D |
Decimal | 237 | 222 | 77 |
Binary | 11101101 | 11011110 | 1001101 |
Octal | 355 | 336 | 115 |
Examples of css and html codes for elements with #EDDE4D color. Also use rgb(237,222,77) instead hex code.
.myTextColor { color: #EDDE4D; }
<p style="color:#EDDE4D">This sample text font color is #EDDE4D.</p>
This text font color is #EDDE4D.
.myBgColor { background-color: #EDDE4D; }
<div style="background-color:#EDDE4D">Inner text</div>
This div background color is #EDDE4D.
.myBorderColor { border: 1px solid #EDDE4D; }
<div style="border:3px solid #EDDE4D">Div</div>
This div border color is #EDDE4D.
.myOpacity80 { color: #EDDE4D; opacity: 0.8; }
<p style="color:#EDDE4D;opacity:0.8;">80%</p>
Text with #EDDE4D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDDE4D;}
<p style="text-shadow: 3px 3px 1px #EDDE4D">Text here.</p>
This text has shadow with #EDDE4D color.
.textShadow {text-shadow: 3px 3px 1px #EDDE4D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDDE4D, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDDE4D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDDE4D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDDE4D, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDDE4D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDDE4D; -webkit-box-shadow: 1px 1px 3px 2px #EDDE4D; box-shadow: 1px 1px 3px 2px #EDDE4D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDDE4D; -webkit-box-shadow: 1px 1px 3px 2px #EDDE4D; box-shadow:1px 1px 3px 2px #EDDE4D;">
Div content here</div>
This text has color #EDDE4D on black background.
This text has color #EDDE4D on white background.
This text has black color on #EDDE4D background.
This text has white color on #EDDE4D background.