HEX: #8E699D
RGB: (142,105,157)
#8E699D contains red, green and blue colors in about the same proportion. Web safe color of #8E699D is #996699 (or #969).
#8E699D color RGB value is (142,105,157).
RGB: (142,105,157) (56%,41%,62%)
R 142 of 255 = 56%
G 105 of 255 = 41%
B 157 of 255 = 62%
R + G + B ~ 53%. #8E699D is middle color (not dark and not light).
R + G + B =
142 + 105 + 157 = 404 (100%)
R 142 of 404 ~ 35.15%
G 105 of 404 ~ 25.99%
B 157 of 404 ~ 38.86%
#8E699D color CMYK value is (10,33,0,38).
CMYK: (10,33,0,38) C10M33Y0K38 (10%,33%,0%,38%) (0.10/0.33/0.00/0.38)
8E | 69 | 9D | |
---|---|---|---|
RGB | 142 | 105 | 157 |
HSL | 283° | 20.97% | 51.37% |
HSB/HSV | 283° | 33.12% | 61.57% |
CMYK | 9.55% | 33.12% | 0.00% |
38.43% |
HEX | 8E | 69 | 9D |
Decimal | 142 | 105 | 157 |
Binary | 10001110 | 1101001 | 10011101 |
Octal | 216 | 151 | 235 |
Examples of css and html codes for elements with #8E699D color. Also use rgb(142,105,157) instead hex code.
.myTextColor { color: #8E699D; }
<p style="color:#8E699D">This sample text font color is #8E699D.</p>
This text font color is #8E699D.
.myBgColor { background-color: #8E699D; }
<div style="background-color:#8E699D">Inner text</div>
This div background color is #8E699D.
.myBorderColor { border: 1px solid #8E699D; }
<div style="border:3px solid #8E699D">Div</div>
This div border color is #8E699D.
.myOpacity80 { color: #8E699D; opacity: 0.8; }
<p style="color:#8E699D;opacity:0.8;">80%</p>
Text with #8E699D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #8E699D;}
<p style="text-shadow: 3px 3px 1px #8E699D">Text here.</p>
This text has shadow with #8E699D color.
.textShadow {text-shadow: 3px 3px 1px #8E699D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #8E699D, 5px 5px 20px red">Text here.</p>
This text has shadow with #8E699D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#8E699D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#8E699D, Direction=45, Strength=4)">Text</p>
This text has shadow with #8E699D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #8E699D; -webkit-box-shadow: 1px 1px 3px 2px #8E699D; box-shadow: 1px 1px 3px 2px #8E699D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #8E699D; -webkit-box-shadow: 1px 1px 3px 2px #8E699D; box-shadow:1px 1px 3px 2px #8E699D;">
Div content here</div>
This text has color #8E699D on black background.
This text has color #8E699D on white background.
This text has black color on #8E699D background.
This text has white color on #8E699D background.