HEX: #E9B676
RGB: (233,182,118)
#E9B676 contains mainly red and green colors. Web safe color of #E9B676 is #FFCC66 (or #FC6).
#E9B676 color RGB value is (233,182,118).
RGB: (233,182,118) (91%,71%,46%)
R 233 of 255 = 91%
G 182 of 255 = 71%
B 118 of 255 = 46%
R + G + B ~ 69%. #E9B676 is quite light color.
R + G + B =
233 + 182 + 118 = 533 (100%)
R 233 of 533 ~ 43.71%
G 182 of 533 ~ 34.15%
B 118 of 533 ~ 22.14%
#E9B676 color CMYK value is (0,22,49,9).
CMYK: (0,22,49,9) C0M22Y49K9 (0%,22%,49%,9%) (0.00/0.22/0.49/0.09)
E9 | B6 | 76 | |
---|---|---|---|
RGB | 233 | 182 | 118 |
HSL | 33° | 72.33% | 68.82% |
HSB/HSV | 33° | 49.36% | 91.37% |
CMYK | 0.00% | 21.89% | 49.36% |
8.63% |
HEX | E9 | B6 | 76 |
Decimal | 233 | 182 | 118 |
Binary | 11101001 | 10110110 | 1110110 |
Octal | 351 | 266 | 166 |
Examples of css and html codes for elements with #E9B676 color. Also use rgb(233,182,118) instead hex code.
.myTextColor { color: #E9B676; }
<p style="color:#E9B676">This sample text font color is #E9B676.</p>
This text font color is #E9B676.
.myBgColor { background-color: #E9B676; }
<div style="background-color:#E9B676">Inner text</div>
This div background color is #E9B676.
.myBorderColor { border: 1px solid #E9B676; }
<div style="border:3px solid #E9B676">Div</div>
This div border color is #E9B676.
.myOpacity80 { color: #E9B676; opacity: 0.8; }
<p style="color:#E9B676;opacity:0.8;">80%</p>
Text with #E9B676 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E9B676;}
<p style="text-shadow: 3px 3px 1px #E9B676">Text here.</p>
This text has shadow with #E9B676 color.
.textShadow {text-shadow: 3px 3px 1px #E9B676, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E9B676, 5px 5px 20px red">Text here.</p>
This text has shadow with #E9B676 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E9B676, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E9B676, Direction=45, Strength=4)">Text</p>
This text has shadow with #E9B676 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E9B676; -webkit-box-shadow: 1px 1px 3px 2px #E9B676; box-shadow: 1px 1px 3px 2px #E9B676; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E9B676; -webkit-box-shadow: 1px 1px 3px 2px #E9B676; box-shadow:1px 1px 3px 2px #E9B676;">
Div content here</div>
This text has color #E9B676 on black background.
This text has color #E9B676 on white background.
This text has black color on #E9B676 background.
This text has white color on #E9B676 background.