HEX: #8E7EAC
RGB: (142,126,172)
#8E7EAC contains red, green and blue colors in about the same proportion. Web safe color of #8E7EAC is #996699 (or #969).
#8E7EAC color RGB value is (142,126,172).
RGB: (142,126,172) (56%,49%,67%)
R 142 of 255 = 56%
G 126 of 255 = 49%
B 172 of 255 = 67%
R + G + B ~ 57%. #8E7EAC is middle color (not dark and not light).
R + G + B =
142 + 126 + 172 = 440 (100%)
R 142 of 440 ~ 32.27%
G 126 of 440 ~ 28.64%
B 172 of 440 ~ 39.09%
#8E7EAC color CMYK value is (17,27,0,33).
CMYK: (17,27,0,33) C17M27Y0K33 (17%,27%,0%,33%) (0.17/0.27/0.00/0.33)
8E | 7E | AC | |
---|---|---|---|
RGB | 142 | 126 | 172 |
HSL | 261° | 21.70% | 58.43% |
HSB/HSV | 261° | 26.74% | 67.45% |
CMYK | 17.44% | 26.74% | 0.00% |
32.55% |
HEX | 8E | 7E | AC |
Decimal | 142 | 126 | 172 |
Binary | 10001110 | 1111110 | 10101100 |
Octal | 216 | 176 | 254 |
Examples of css and html codes for elements with #8E7EAC color. Also use rgb(142,126,172) instead hex code.
.myTextColor { color: #8E7EAC; }
<p style="color:#8E7EAC">This sample text font color is #8E7EAC.</p>
This text font color is #8E7EAC.
.myBgColor { background-color: #8E7EAC; }
<div style="background-color:#8E7EAC">Inner text</div>
This div background color is #8E7EAC.
.myBorderColor { border: 1px solid #8E7EAC; }
<div style="border:3px solid #8E7EAC">Div</div>
This div border color is #8E7EAC.
.myOpacity80 { color: #8E7EAC; opacity: 0.8; }
<p style="color:#8E7EAC;opacity:0.8;">80%</p>
Text with #8E7EAC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #8E7EAC;}
<p style="text-shadow: 3px 3px 1px #8E7EAC">Text here.</p>
This text has shadow with #8E7EAC color.
.textShadow {text-shadow: 3px 3px 1px #8E7EAC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #8E7EAC, 5px 5px 20px red">Text here.</p>
This text has shadow with #8E7EAC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#8E7EAC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#8E7EAC, Direction=45, Strength=4)">Text</p>
This text has shadow with #8E7EAC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #8E7EAC; -webkit-box-shadow: 1px 1px 3px 2px #8E7EAC; box-shadow: 1px 1px 3px 2px #8E7EAC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #8E7EAC; -webkit-box-shadow: 1px 1px 3px 2px #8E7EAC; box-shadow:1px 1px 3px 2px #8E7EAC;">
Div content here</div>
This text has color #8E7EAC on black background.
This text has color #8E7EAC on white background.
This text has black color on #8E7EAC background.
This text has white color on #8E7EAC background.