HEX: #E9B09D
RGB: (233,176,157)
#E9B09D contains mainly red and green colors. Web safe color of #E9B09D is #FF9999 (or #F99).
#E9B09D color RGB value is (233,176,157).
RGB: (233,176,157) (91%,69%,62%)
R 233 of 255 = 91%
G 176 of 255 = 69%
B 157 of 255 = 62%
R + G + B ~ 74%. #E9B09D is quite light color.
R + G + B =
233 + 176 + 157 = 566 (100%)
R 233 of 566 ~ 41.17%
G 176 of 566 ~ 31.1%
B 157 of 566 ~ 27.74%
#E9B09D color CMYK value is (0,24,33,9).
CMYK: (0,24,33,9) C0M24Y33K9 (0%,24%,33%,9%) (0.00/0.24/0.33/0.09)
E9 | B0 | 9D | |
---|---|---|---|
RGB | 233 | 176 | 157 |
HSL | 15° | 63.33% | 76.47% |
HSB/HSV | 15° | 32.62% | 91.37% |
CMYK | 0.00% | 24.46% | 32.62% |
8.63% |
HEX | E9 | B0 | 9D |
Decimal | 233 | 176 | 157 |
Binary | 11101001 | 10110000 | 10011101 |
Octal | 351 | 260 | 235 |
Examples of css and html codes for elements with #E9B09D color. Also use rgb(233,176,157) instead hex code.
.myTextColor { color: #E9B09D; }
<p style="color:#E9B09D">This sample text font color is #E9B09D.</p>
This text font color is #E9B09D.
.myBgColor { background-color: #E9B09D; }
<div style="background-color:#E9B09D">Inner text</div>
This div background color is #E9B09D.
.myBorderColor { border: 1px solid #E9B09D; }
<div style="border:3px solid #E9B09D">Div</div>
This div border color is #E9B09D.
.myOpacity80 { color: #E9B09D; opacity: 0.8; }
<p style="color:#E9B09D;opacity:0.8;">80%</p>
Text with #E9B09D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E9B09D;}
<p style="text-shadow: 3px 3px 1px #E9B09D">Text here.</p>
This text has shadow with #E9B09D color.
.textShadow {text-shadow: 3px 3px 1px #E9B09D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E9B09D, 5px 5px 20px red">Text here.</p>
This text has shadow with #E9B09D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E9B09D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E9B09D, Direction=45, Strength=4)">Text</p>
This text has shadow with #E9B09D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E9B09D; -webkit-box-shadow: 1px 1px 3px 2px #E9B09D; box-shadow: 1px 1px 3px 2px #E9B09D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E9B09D; -webkit-box-shadow: 1px 1px 3px 2px #E9B09D; box-shadow:1px 1px 3px 2px #E9B09D;">
Div content here</div>
This text has color #E9B09D on black background.
This text has color #E9B09D on white background.
This text has black color on #E9B09D background.
This text has white color on #E9B09D background.