HEX: #E6ED76
RGB: (230,237,118)
#E6ED76 contains mainly red and green colors. Web safe color of #E6ED76 is #CCFF66 (or #CF6).
#E6ED76 color RGB value is (230,237,118).
RGB: (230,237,118) (90%,93%,46%)
R 230 of 255 = 90%
G 237 of 255 = 93%
B 118 of 255 = 46%
R + G + B ~ 76%. #E6ED76 is quite light color.
R + G + B =
230 + 237 + 118 = 585 (100%)
R 230 of 585 ~ 39.32%
G 237 of 585 ~ 40.51%
B 118 of 585 ~ 20.17%
#E6ED76 color CMYK value is (3,0,50,7).
CMYK: (3,0,50,7) C3M0Y50K7 (3%,0%,50%,7%) (0.03/0.00/0.50/0.07)
E6 | ED | 76 | |
---|---|---|---|
RGB | 230 | 237 | 118 |
HSL | 64° | 76.77% | 69.61% |
HSB/HSV | 64° | 50.21% | 92.94% |
CMYK | 2.95% | 0.00% | 50.21% |
7.06% |
HEX | E6 | ED | 76 |
Decimal | 230 | 237 | 118 |
Binary | 11100110 | 11101101 | 1110110 |
Octal | 346 | 355 | 166 |
Examples of css and html codes for elements with #E6ED76 color. Also use rgb(230,237,118) instead hex code.
.myTextColor { color: #E6ED76; }
<p style="color:#E6ED76">This sample text font color is #E6ED76.</p>
This text font color is #E6ED76.
.myBgColor { background-color: #E6ED76; }
<div style="background-color:#E6ED76">Inner text</div>
This div background color is #E6ED76.
.myBorderColor { border: 1px solid #E6ED76; }
<div style="border:3px solid #E6ED76">Div</div>
This div border color is #E6ED76.
.myOpacity80 { color: #E6ED76; opacity: 0.8; }
<p style="color:#E6ED76;opacity:0.8;">80%</p>
Text with #E6ED76 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6ED76;}
<p style="text-shadow: 3px 3px 1px #E6ED76">Text here.</p>
This text has shadow with #E6ED76 color.
.textShadow {text-shadow: 3px 3px 1px #E6ED76, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6ED76, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6ED76 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6ED76, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6ED76, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6ED76 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6ED76; -webkit-box-shadow: 1px 1px 3px 2px #E6ED76; box-shadow: 1px 1px 3px 2px #E6ED76; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6ED76; -webkit-box-shadow: 1px 1px 3px 2px #E6ED76; box-shadow:1px 1px 3px 2px #E6ED76;">
Div content here</div>
This text has color #E6ED76 on black background.
This text has color #E6ED76 on white background.
This text has black color on #E6ED76 background.
This text has white color on #E6ED76 background.