HEX: #9E688D
RGB: (158,104,141)
#9E688D contains red, green and blue colors in about the same proportion. Web safe color of #9E688D is #996699 (or #969).
#9E688D color RGB value is (158,104,141).
RGB: (158,104,141) (62%,41%,55%)
R 158 of 255 = 62%
G 104 of 255 = 41%
B 141 of 255 = 55%
R + G + B ~ 53%. #9E688D is middle color (not dark and not light).
R + G + B =
158 + 104 + 141 = 403 (100%)
R 158 of 403 ~ 39.21%
G 104 of 403 ~ 25.81%
B 141 of 403 ~ 34.99%
#9E688D color CMYK value is (0,34,11,38).
CMYK: (0,34,11,38) C0M34Y11K38 (0%,34%,11%,38%) (0.00/0.34/0.11/0.38)
9E | 68 | 8D | |
---|---|---|---|
RGB | 158 | 104 | 141 |
HSL | 319° | 21.77% | 51.37% |
HSB/HSV | 319° | 34.18% | 61.96% |
CMYK | 0.00% | 34.18% | 10.76% |
38.04% |
HEX | 9E | 68 | 8D |
Decimal | 158 | 104 | 141 |
Binary | 10011110 | 1101000 | 10001101 |
Octal | 236 | 150 | 215 |
Examples of css and html codes for elements with #9E688D color. Also use rgb(158,104,141) instead hex code.
.myTextColor { color: #9E688D; }
<p style="color:#9E688D">This sample text font color is #9E688D.</p>
This text font color is #9E688D.
.myBgColor { background-color: #9E688D; }
<div style="background-color:#9E688D">Inner text</div>
This div background color is #9E688D.
.myBorderColor { border: 1px solid #9E688D; }
<div style="border:3px solid #9E688D">Div</div>
This div border color is #9E688D.
.myOpacity80 { color: #9E688D; opacity: 0.8; }
<p style="color:#9E688D;opacity:0.8;">80%</p>
Text with #9E688D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9E688D;}
<p style="text-shadow: 3px 3px 1px #9E688D">Text here.</p>
This text has shadow with #9E688D color.
.textShadow {text-shadow: 3px 3px 1px #9E688D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9E688D, 5px 5px 20px red">Text here.</p>
This text has shadow with #9E688D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9E688D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9E688D, Direction=45, Strength=4)">Text</p>
This text has shadow with #9E688D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9E688D; -webkit-box-shadow: 1px 1px 3px 2px #9E688D; box-shadow: 1px 1px 3px 2px #9E688D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9E688D; -webkit-box-shadow: 1px 1px 3px 2px #9E688D; box-shadow:1px 1px 3px 2px #9E688D;">
Div content here</div>
This text has color #9E688D on black background.
This text has color #9E688D on white background.
This text has black color on #9E688D background.
This text has white color on #9E688D background.