HEX: #E6AF9E
RGB: (230,175,158)
#E6AF9E contains mainly red and green colors. Web safe color of #E6AF9E is #CC9999 (or #C99).
#E6AF9E color RGB value is (230,175,158).
RGB: (230,175,158) (90%,69%,62%)
R 230 of 255 = 90%
G 175 of 255 = 69%
B 158 of 255 = 62%
R + G + B ~ 74%. #E6AF9E is quite light color.
R + G + B =
230 + 175 + 158 = 563 (100%)
R 230 of 563 ~ 40.85%
G 175 of 563 ~ 31.08%
B 158 of 563 ~ 28.06%
#E6AF9E color CMYK value is (0,24,31,10).
CMYK: (0,24,31,10) C0M24Y31K10 (0%,24%,31%,10%) (0.00/0.24/0.31/0.10)
E6 | AF | 9E | |
---|---|---|---|
RGB | 230 | 175 | 158 |
HSL | 14° | 59.02% | 76.08% |
HSB/HSV | 14° | 31.30% | 90.20% |
CMYK | 0.00% | 23.91% | 31.30% |
9.80% |
HEX | E6 | AF | 9E |
Decimal | 230 | 175 | 158 |
Binary | 11100110 | 10101111 | 10011110 |
Octal | 346 | 257 | 236 |
Examples of css and html codes for elements with #E6AF9E color. Also use rgb(230,175,158) instead hex code.
.myTextColor { color: #E6AF9E; }
<p style="color:#E6AF9E">This sample text font color is #E6AF9E.</p>
This text font color is #E6AF9E.
.myBgColor { background-color: #E6AF9E; }
<div style="background-color:#E6AF9E">Inner text</div>
This div background color is #E6AF9E.
.myBorderColor { border: 1px solid #E6AF9E; }
<div style="border:3px solid #E6AF9E">Div</div>
This div border color is #E6AF9E.
.myOpacity80 { color: #E6AF9E; opacity: 0.8; }
<p style="color:#E6AF9E;opacity:0.8;">80%</p>
Text with #E6AF9E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6AF9E;}
<p style="text-shadow: 3px 3px 1px #E6AF9E">Text here.</p>
This text has shadow with #E6AF9E color.
.textShadow {text-shadow: 3px 3px 1px #E6AF9E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6AF9E, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6AF9E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6AF9E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6AF9E, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6AF9E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6AF9E; -webkit-box-shadow: 1px 1px 3px 2px #E6AF9E; box-shadow: 1px 1px 3px 2px #E6AF9E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6AF9E; -webkit-box-shadow: 1px 1px 3px 2px #E6AF9E; box-shadow:1px 1px 3px 2px #E6AF9E;">
Div content here</div>
This text has color #E6AF9E on black background.
This text has color #E6AF9E on white background.
This text has black color on #E6AF9E background.
This text has white color on #E6AF9E background.