HEX: #E6C774
RGB: (230,199,116)
#E6C774 contains mainly red and green colors. Web safe color of #E6C774 is #CCCC66 (or #CC6).
#E6C774 color RGB value is (230,199,116).
RGB: (230,199,116) (90%,78%,45%)
R 230 of 255 = 90%
G 199 of 255 = 78%
B 116 of 255 = 45%
R + G + B ~ 71%. #E6C774 is quite light color.
R + G + B =
230 + 199 + 116 = 545 (100%)
R 230 of 545 ~ 42.2%
G 199 of 545 ~ 36.51%
B 116 of 545 ~ 21.28%
#E6C774 color CMYK value is (0,13,50,10).
CMYK: (0,13,50,10) C0M13Y50K10 (0%,13%,50%,10%) (0.00/0.13/0.50/0.10)
E6 | C7 | 74 | |
---|---|---|---|
RGB | 230 | 199 | 116 |
HSL | 44° | 69.51% | 67.84% |
HSB/HSV | 44° | 49.57% | 90.20% |
CMYK | 0.00% | 13.48% | 49.57% |
9.80% |
HEX | E6 | C7 | 74 |
Decimal | 230 | 199 | 116 |
Binary | 11100110 | 11000111 | 1110100 |
Octal | 346 | 307 | 164 |
Examples of css and html codes for elements with #E6C774 color. Also use rgb(230,199,116) instead hex code.
.myTextColor { color: #E6C774; }
<p style="color:#E6C774">This sample text font color is #E6C774.</p>
This text font color is #E6C774.
.myBgColor { background-color: #E6C774; }
<div style="background-color:#E6C774">Inner text</div>
This div background color is #E6C774.
.myBorderColor { border: 1px solid #E6C774; }
<div style="border:3px solid #E6C774">Div</div>
This div border color is #E6C774.
.myOpacity80 { color: #E6C774; opacity: 0.8; }
<p style="color:#E6C774;opacity:0.8;">80%</p>
Text with #E6C774 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6C774;}
<p style="text-shadow: 3px 3px 1px #E6C774">Text here.</p>
This text has shadow with #E6C774 color.
.textShadow {text-shadow: 3px 3px 1px #E6C774, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6C774, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6C774 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6C774, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6C774, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6C774 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6C774; -webkit-box-shadow: 1px 1px 3px 2px #E6C774; box-shadow: 1px 1px 3px 2px #E6C774; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6C774; -webkit-box-shadow: 1px 1px 3px 2px #E6C774; box-shadow:1px 1px 3px 2px #E6C774;">
Div content here</div>
This text has color #E6C774 on black background.
This text has color #E6C774 on white background.
This text has black color on #E6C774 background.
This text has white color on #E6C774 background.