HEX: #E5C093
RGB: (229,192,147)
#E5C093 contains mainly red and green colors. Web safe color of #E5C093 is #CCCC99 (or #CC9).
#E5C093 color RGB value is (229,192,147).
RGB: (229,192,147) (90%,75%,58%)
R 229 of 255 = 90%
G 192 of 255 = 75%
B 147 of 255 = 58%
R + G + B ~ 74%. #E5C093 is quite light color.
R + G + B =
229 + 192 + 147 = 568 (100%)
R 229 of 568 ~ 40.32%
G 192 of 568 ~ 33.8%
B 147 of 568 ~ 25.88%
#E5C093 color CMYK value is (0,16,36,10).
CMYK: (0,16,36,10) C0M16Y36K10 (0%,16%,36%,10%) (0.00/0.16/0.36/0.10)
E5 | C0 | 93 | |
---|---|---|---|
RGB | 229 | 192 | 147 |
HSL | 33° | 61.19% | 73.73% |
HSB/HSV | 33° | 35.81% | 89.80% |
CMYK | 0.00% | 16.16% | 35.81% |
10.20% |
HEX | E5 | C0 | 93 |
Decimal | 229 | 192 | 147 |
Binary | 11100101 | 11000000 | 10010011 |
Octal | 345 | 300 | 223 |
Examples of css and html codes for elements with #E5C093 color. Also use rgb(229,192,147) instead hex code.
.myTextColor { color: #E5C093; }
<p style="color:#E5C093">This sample text font color is #E5C093.</p>
This text font color is #E5C093.
.myBgColor { background-color: #E5C093; }
<div style="background-color:#E5C093">Inner text</div>
This div background color is #E5C093.
.myBorderColor { border: 1px solid #E5C093; }
<div style="border:3px solid #E5C093">Div</div>
This div border color is #E5C093.
.myOpacity80 { color: #E5C093; opacity: 0.8; }
<p style="color:#E5C093;opacity:0.8;">80%</p>
Text with #E5C093 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5C093;}
<p style="text-shadow: 3px 3px 1px #E5C093">Text here.</p>
This text has shadow with #E5C093 color.
.textShadow {text-shadow: 3px 3px 1px #E5C093, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5C093, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5C093 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5C093, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5C093, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5C093 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5C093; -webkit-box-shadow: 1px 1px 3px 2px #E5C093; box-shadow: 1px 1px 3px 2px #E5C093; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5C093; -webkit-box-shadow: 1px 1px 3px 2px #E5C093; box-shadow:1px 1px 3px 2px #E5C093;">
Div content here</div>
This text has color #E5C093 on black background.
This text has color #E5C093 on white background.
This text has black color on #E5C093 background.
This text has white color on #E5C093 background.