HEX: #E2C25B
RGB: (226,194,91)
#E2C25B contains mainly red and green colors. Web safe color of #E2C25B is #CCCC66 (or #CC6).
#E2C25B color RGB value is (226,194,91).
RGB: (226,194,91) (89%,76%,36%)
R 226 of 255 = 89%
G 194 of 255 = 76%
B 91 of 255 = 36%
R + G + B ~ 67%. #E2C25B is quite light color.
R + G + B =
226 + 194 + 91 = 511 (100%)
R 226 of 511 ~ 44.23%
G 194 of 511 ~ 37.96%
B 91 of 511 ~ 17.81%
#E2C25B color CMYK value is (0,14,60,11).
CMYK: (0,14,60,11) C0M14Y60K11 (0%,14%,60%,11%) (0.00/0.14/0.60/0.11)
E2 | C2 | 5B | |
---|---|---|---|
RGB | 226 | 194 | 91 |
HSL | 46° | 69.95% | 62.16% |
HSB/HSV | 46° | 59.73% | 88.63% |
CMYK | 0.00% | 14.16% | 59.73% |
11.37% |
HEX | E2 | C2 | 5B |
Decimal | 226 | 194 | 91 |
Binary | 11100010 | 11000010 | 1011011 |
Octal | 342 | 302 | 133 |
Examples of css and html codes for elements with #E2C25B color. Also use rgb(226,194,91) instead hex code.
.myTextColor { color: #E2C25B; }
<p style="color:#E2C25B">This sample text font color is #E2C25B.</p>
This text font color is #E2C25B.
.myBgColor { background-color: #E2C25B; }
<div style="background-color:#E2C25B">Inner text</div>
This div background color is #E2C25B.
.myBorderColor { border: 1px solid #E2C25B; }
<div style="border:3px solid #E2C25B">Div</div>
This div border color is #E2C25B.
.myOpacity80 { color: #E2C25B; opacity: 0.8; }
<p style="color:#E2C25B;opacity:0.8;">80%</p>
Text with #E2C25B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E2C25B;}
<p style="text-shadow: 3px 3px 1px #E2C25B">Text here.</p>
This text has shadow with #E2C25B color.
.textShadow {text-shadow: 3px 3px 1px #E2C25B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E2C25B, 5px 5px 20px red">Text here.</p>
This text has shadow with #E2C25B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E2C25B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E2C25B, Direction=45, Strength=4)">Text</p>
This text has shadow with #E2C25B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E2C25B; -webkit-box-shadow: 1px 1px 3px 2px #E2C25B; box-shadow: 1px 1px 3px 2px #E2C25B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E2C25B; -webkit-box-shadow: 1px 1px 3px 2px #E2C25B; box-shadow:1px 1px 3px 2px #E2C25B;">
Div content here</div>
This text has color #E2C25B on black background.
This text has color #E2C25B on white background.
This text has black color on #E2C25B background.
This text has white color on #E2C25B background.