HEX: #E6B69A
RGB: (230,182,154)
#E6B69A contains mainly red and green colors. Web safe color of #E6B69A is #CCCC99 (or #CC9).
#E6B69A color RGB value is (230,182,154).
RGB: (230,182,154) (90%,71%,60%)
R 230 of 255 = 90%
G 182 of 255 = 71%
B 154 of 255 = 60%
R + G + B ~ 74%. #E6B69A is quite light color.
R + G + B =
230 + 182 + 154 = 566 (100%)
R 230 of 566 ~ 40.64%
G 182 of 566 ~ 32.16%
B 154 of 566 ~ 27.21%
#E6B69A color CMYK value is (0,21,33,10).
CMYK: (0,21,33,10) C0M21Y33K10 (0%,21%,33%,10%) (0.00/0.21/0.33/0.10)
E6 | B6 | 9A | |
---|---|---|---|
RGB | 230 | 182 | 154 |
HSL | 22° | 60.32% | 75.29% |
HSB/HSV | 22° | 33.04% | 90.20% |
CMYK | 0.00% | 20.87% | 33.04% |
9.80% |
HEX | E6 | B6 | 9A |
Decimal | 230 | 182 | 154 |
Binary | 11100110 | 10110110 | 10011010 |
Octal | 346 | 266 | 232 |
Examples of css and html codes for elements with #E6B69A color. Also use rgb(230,182,154) instead hex code.
.myTextColor { color: #E6B69A; }
<p style="color:#E6B69A">This sample text font color is #E6B69A.</p>
This text font color is #E6B69A.
.myBgColor { background-color: #E6B69A; }
<div style="background-color:#E6B69A">Inner text</div>
This div background color is #E6B69A.
.myBorderColor { border: 1px solid #E6B69A; }
<div style="border:3px solid #E6B69A">Div</div>
This div border color is #E6B69A.
.myOpacity80 { color: #E6B69A; opacity: 0.8; }
<p style="color:#E6B69A;opacity:0.8;">80%</p>
Text with #E6B69A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6B69A;}
<p style="text-shadow: 3px 3px 1px #E6B69A">Text here.</p>
This text has shadow with #E6B69A color.
.textShadow {text-shadow: 3px 3px 1px #E6B69A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6B69A, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6B69A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6B69A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6B69A, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6B69A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6B69A; -webkit-box-shadow: 1px 1px 3px 2px #E6B69A; box-shadow: 1px 1px 3px 2px #E6B69A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6B69A; -webkit-box-shadow: 1px 1px 3px 2px #E6B69A; box-shadow:1px 1px 3px 2px #E6B69A;">
Div content here</div>
This text has color #E6B69A on black background.
This text has color #E6B69A on white background.
This text has black color on #E6B69A background.
This text has white color on #E6B69A background.