HEX: #E5D06D
RGB: (229,208,109)
#E5D06D contains mainly red and green colors. Web safe color of #E5D06D is #CCCC66 (or #CC6).
#E5D06D color RGB value is (229,208,109).
RGB: (229,208,109) (90%,82%,43%)
R 229 of 255 = 90%
G 208 of 255 = 82%
B 109 of 255 = 43%
R + G + B ~ 72%. #E5D06D is quite light color.
R + G + B =
229 + 208 + 109 = 546 (100%)
R 229 of 546 ~ 41.94%
G 208 of 546 ~ 38.1%
B 109 of 546 ~ 19.96%
#E5D06D color CMYK value is (0,9,52,10).
CMYK: (0,9,52,10) C0M9Y52K10 (0%,9%,52%,10%) (0.00/0.09/0.52/0.10)
E5 | D0 | 6D | |
---|---|---|---|
RGB | 229 | 208 | 109 |
HSL | 50° | 69.77% | 66.27% |
HSB/HSV | 50° | 52.40% | 89.80% |
CMYK | 0.00% | 9.17% | 52.40% |
10.20% |
HEX | E5 | D0 | 6D |
Decimal | 229 | 208 | 109 |
Binary | 11100101 | 11010000 | 1101101 |
Octal | 345 | 320 | 155 |
Examples of css and html codes for elements with #E5D06D color. Also use rgb(229,208,109) instead hex code.
.myTextColor { color: #E5D06D; }
<p style="color:#E5D06D">This sample text font color is #E5D06D.</p>
This text font color is #E5D06D.
.myBgColor { background-color: #E5D06D; }
<div style="background-color:#E5D06D">Inner text</div>
This div background color is #E5D06D.
.myBorderColor { border: 1px solid #E5D06D; }
<div style="border:3px solid #E5D06D">Div</div>
This div border color is #E5D06D.
.myOpacity80 { color: #E5D06D; opacity: 0.8; }
<p style="color:#E5D06D;opacity:0.8;">80%</p>
Text with #E5D06D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5D06D;}
<p style="text-shadow: 3px 3px 1px #E5D06D">Text here.</p>
This text has shadow with #E5D06D color.
.textShadow {text-shadow: 3px 3px 1px #E5D06D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5D06D, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5D06D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5D06D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5D06D, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5D06D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5D06D; -webkit-box-shadow: 1px 1px 3px 2px #E5D06D; box-shadow: 1px 1px 3px 2px #E5D06D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5D06D; -webkit-box-shadow: 1px 1px 3px 2px #E5D06D; box-shadow:1px 1px 3px 2px #E5D06D;">
Div content here</div>
This text has color #E5D06D on black background.
This text has color #E5D06D on white background.
This text has black color on #E5D06D background.
This text has white color on #E5D06D background.