HEX: #E2D19A
RGB: (226,209,154)
#E2D19A contains mainly red and green colors. Web safe color of #E2D19A is #CCCC99 (or #CC9).
#E2D19A color RGB value is (226,209,154).
RGB: (226,209,154) (89%,82%,60%)
R 226 of 255 = 89%
G 209 of 255 = 82%
B 154 of 255 = 60%
R + G + B ~ 77%. #E2D19A is quite light color.
R + G + B =
226 + 209 + 154 = 589 (100%)
R 226 of 589 ~ 38.37%
G 209 of 589 ~ 35.48%
B 154 of 589 ~ 26.15%
#E2D19A color CMYK value is (0,8,32,11).
CMYK: (0,8,32,11) C0M8Y32K11 (0%,8%,32%,11%) (0.00/0.08/0.32/0.11)
E2 | D1 | 9A | |
---|---|---|---|
RGB | 226 | 209 | 154 |
HSL | 46° | 55.38% | 74.51% |
HSB/HSV | 46° | 31.86% | 88.63% |
CMYK | 0.00% | 7.52% | 31.86% |
11.37% |
HEX | E2 | D1 | 9A |
Decimal | 226 | 209 | 154 |
Binary | 11100010 | 11010001 | 10011010 |
Octal | 342 | 321 | 232 |
Examples of css and html codes for elements with #E2D19A color. Also use rgb(226,209,154) instead hex code.
.myTextColor { color: #E2D19A; }
<p style="color:#E2D19A">This sample text font color is #E2D19A.</p>
This text font color is #E2D19A.
.myBgColor { background-color: #E2D19A; }
<div style="background-color:#E2D19A">Inner text</div>
This div background color is #E2D19A.
.myBorderColor { border: 1px solid #E2D19A; }
<div style="border:3px solid #E2D19A">Div</div>
This div border color is #E2D19A.
.myOpacity80 { color: #E2D19A; opacity: 0.8; }
<p style="color:#E2D19A;opacity:0.8;">80%</p>
Text with #E2D19A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E2D19A;}
<p style="text-shadow: 3px 3px 1px #E2D19A">Text here.</p>
This text has shadow with #E2D19A color.
.textShadow {text-shadow: 3px 3px 1px #E2D19A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E2D19A, 5px 5px 20px red">Text here.</p>
This text has shadow with #E2D19A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E2D19A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E2D19A, Direction=45, Strength=4)">Text</p>
This text has shadow with #E2D19A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E2D19A; -webkit-box-shadow: 1px 1px 3px 2px #E2D19A; box-shadow: 1px 1px 3px 2px #E2D19A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E2D19A; -webkit-box-shadow: 1px 1px 3px 2px #E2D19A; box-shadow:1px 1px 3px 2px #E2D19A;">
Div content here</div>
This text has color #E2D19A on black background.
This text has color #E2D19A on white background.
This text has black color on #E2D19A background.
This text has white color on #E2D19A background.