HEX: #E2C14C
RGB: (226,193,76)
#E2C14C contains mainly red and green colors. Web safe color of #E2C14C is #CCCC33 (or #CC3).
#E2C14C color RGB value is (226,193,76).
RGB: (226,193,76) (89%,76%,30%)
R 226 of 255 = 89%
G 193 of 255 = 76%
B 76 of 255 = 30%
R + G + B ~ 65%. #E2C14C is quite light color.
R + G + B =
226 + 193 + 76 = 495 (100%)
R 226 of 495 ~ 45.66%
G 193 of 495 ~ 38.99%
B 76 of 495 ~ 15.35%
#E2C14C color CMYK value is (0,15,66,11).
CMYK: (0,15,66,11) C0M15Y66K11 (0%,15%,66%,11%) (0.00/0.15/0.66/0.11)
E2 | C1 | 4C | |
---|---|---|---|
RGB | 226 | 193 | 76 |
HSL | 47° | 72.12% | 59.22% |
HSB/HSV | 47° | 66.37% | 88.63% |
CMYK | 0.00% | 14.60% | 66.37% |
11.37% |
HEX | E2 | C1 | 4C |
Decimal | 226 | 193 | 76 |
Binary | 11100010 | 11000001 | 1001100 |
Octal | 342 | 301 | 114 |
Examples of css and html codes for elements with #E2C14C color. Also use rgb(226,193,76) instead hex code.
.myTextColor { color: #E2C14C; }
<p style="color:#E2C14C">This sample text font color is #E2C14C.</p>
This text font color is #E2C14C.
.myBgColor { background-color: #E2C14C; }
<div style="background-color:#E2C14C">Inner text</div>
This div background color is #E2C14C.
.myBorderColor { border: 1px solid #E2C14C; }
<div style="border:3px solid #E2C14C">Div</div>
This div border color is #E2C14C.
.myOpacity80 { color: #E2C14C; opacity: 0.8; }
<p style="color:#E2C14C;opacity:0.8;">80%</p>
Text with #E2C14C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E2C14C;}
<p style="text-shadow: 3px 3px 1px #E2C14C">Text here.</p>
This text has shadow with #E2C14C color.
.textShadow {text-shadow: 3px 3px 1px #E2C14C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E2C14C, 5px 5px 20px red">Text here.</p>
This text has shadow with #E2C14C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E2C14C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E2C14C, Direction=45, Strength=4)">Text</p>
This text has shadow with #E2C14C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E2C14C; -webkit-box-shadow: 1px 1px 3px 2px #E2C14C; box-shadow: 1px 1px 3px 2px #E2C14C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E2C14C; -webkit-box-shadow: 1px 1px 3px 2px #E2C14C; box-shadow:1px 1px 3px 2px #E2C14C;">
Div content here</div>
This text has color #E2C14C on black background.
This text has color #E2C14C on white background.
This text has black color on #E2C14C background.
This text has white color on #E2C14C background.