HEX: #E5D79B
RGB: (229,215,155)
#E5D79B contains mainly red and green colors. Web safe color of #E5D79B is #CCCC99 (or #CC9).
#E5D79B color RGB value is (229,215,155).
RGB: (229,215,155) (90%,84%,61%)
R 229 of 255 = 90%
G 215 of 255 = 84%
B 155 of 255 = 61%
R + G + B ~ 78%. #E5D79B is quite light color.
R + G + B =
229 + 215 + 155 = 599 (100%)
R 229 of 599 ~ 38.23%
G 215 of 599 ~ 35.89%
B 155 of 599 ~ 25.88%
#E5D79B color CMYK value is (0,6,32,10).
CMYK: (0,6,32,10) C0M6Y32K10 (0%,6%,32%,10%) (0.00/0.06/0.32/0.10)
E5 | D7 | 9B | |
---|---|---|---|
RGB | 229 | 215 | 155 |
HSL | 49° | 58.73% | 75.29% |
HSB/HSV | 49° | 32.31% | 89.80% |
CMYK | 0.00% | 6.11% | 32.31% |
10.20% |
HEX | E5 | D7 | 9B |
Decimal | 229 | 215 | 155 |
Binary | 11100101 | 11010111 | 10011011 |
Octal | 345 | 327 | 233 |
Examples of css and html codes for elements with #E5D79B color. Also use rgb(229,215,155) instead hex code.
.myTextColor { color: #E5D79B; }
<p style="color:#E5D79B">This sample text font color is #E5D79B.</p>
This text font color is #E5D79B.
.myBgColor { background-color: #E5D79B; }
<div style="background-color:#E5D79B">Inner text</div>
This div background color is #E5D79B.
.myBorderColor { border: 1px solid #E5D79B; }
<div style="border:3px solid #E5D79B">Div</div>
This div border color is #E5D79B.
.myOpacity80 { color: #E5D79B; opacity: 0.8; }
<p style="color:#E5D79B;opacity:0.8;">80%</p>
Text with #E5D79B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5D79B;}
<p style="text-shadow: 3px 3px 1px #E5D79B">Text here.</p>
This text has shadow with #E5D79B color.
.textShadow {text-shadow: 3px 3px 1px #E5D79B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5D79B, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5D79B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5D79B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5D79B, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5D79B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5D79B; -webkit-box-shadow: 1px 1px 3px 2px #E5D79B; box-shadow: 1px 1px 3px 2px #E5D79B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5D79B; -webkit-box-shadow: 1px 1px 3px 2px #E5D79B; box-shadow:1px 1px 3px 2px #E5D79B;">
Div content here</div>
This text has color #E5D79B on black background.
This text has color #E5D79B on white background.
This text has black color on #E5D79B background.
This text has white color on #E5D79B background.