HEX: #E6BEA9
RGB: (230,190,169)
#E6BEA9 contains mainly red and green colors. Web safe color of #E6BEA9 is #CCCC99 (or #CC9).
#E6BEA9 color RGB value is (230,190,169).
RGB: (230,190,169) (90%,75%,66%)
R 230 of 255 = 90%
G 190 of 255 = 75%
B 169 of 255 = 66%
R + G + B ~ 77%. #E6BEA9 is quite light color.
R + G + B =
230 + 190 + 169 = 589 (100%)
R 230 of 589 ~ 39.05%
G 190 of 589 ~ 32.26%
B 169 of 589 ~ 28.69%
#E6BEA9 color CMYK value is (0,17,27,10).
CMYK: (0,17,27,10) C0M17Y27K10 (0%,17%,27%,10%) (0.00/0.17/0.27/0.10)
E6 | BE | A9 | |
---|---|---|---|
RGB | 230 | 190 | 169 |
HSL | 21° | 54.95% | 78.24% |
HSB/HSV | 21° | 26.52% | 90.20% |
CMYK | 0.00% | 17.39% | 26.52% |
9.80% |
HEX | E6 | BE | A9 |
Decimal | 230 | 190 | 169 |
Binary | 11100110 | 10111110 | 10101001 |
Octal | 346 | 276 | 251 |
Examples of css and html codes for elements with #E6BEA9 color. Also use rgb(230,190,169) instead hex code.
.myTextColor { color: #E6BEA9; }
<p style="color:#E6BEA9">This sample text font color is #E6BEA9.</p>
This text font color is #E6BEA9.
.myBgColor { background-color: #E6BEA9; }
<div style="background-color:#E6BEA9">Inner text</div>
This div background color is #E6BEA9.
.myBorderColor { border: 1px solid #E6BEA9; }
<div style="border:3px solid #E6BEA9">Div</div>
This div border color is #E6BEA9.
.myOpacity80 { color: #E6BEA9; opacity: 0.8; }
<p style="color:#E6BEA9;opacity:0.8;">80%</p>
Text with #E6BEA9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6BEA9;}
<p style="text-shadow: 3px 3px 1px #E6BEA9">Text here.</p>
This text has shadow with #E6BEA9 color.
.textShadow {text-shadow: 3px 3px 1px #E6BEA9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6BEA9, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6BEA9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6BEA9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6BEA9, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6BEA9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6BEA9; -webkit-box-shadow: 1px 1px 3px 2px #E6BEA9; box-shadow: 1px 1px 3px 2px #E6BEA9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6BEA9; -webkit-box-shadow: 1px 1px 3px 2px #E6BEA9; box-shadow:1px 1px 3px 2px #E6BEA9;">
Div content here</div>
This text has color #E6BEA9 on black background.
This text has color #E6BEA9 on white background.
This text has black color on #E6BEA9 background.
This text has white color on #E6BEA9 background.