HEX: #7E688D
RGB: (126,104,141)
#7E688D contains red, green and blue colors in about the same proportion. Web safe color of #7E688D is #666699 (or #669).
#7E688D color RGB value is (126,104,141).
RGB: (126,104,141) (49%,41%,55%)
R 126 of 255 = 49%
G 104 of 255 = 41%
B 141 of 255 = 55%
R + G + B ~ 48%. #7E688D is middle color (not dark and not light).
R + G + B =
126 + 104 + 141 = 371 (100%)
R 126 of 371 ~ 33.96%
G 104 of 371 ~ 28.03%
B 141 of 371 ~ 38.01%
#7E688D color CMYK value is (11,26,0,45).
CMYK: (11,26,0,45) C11M26Y0K45 (11%,26%,0%,45%) (0.11/0.26/0.00/0.45)
7E | 68 | 8D | |
---|---|---|---|
RGB | 126 | 104 | 141 |
HSL | 276° | 15.10% | 48.04% |
HSB/HSV | 276° | 26.24% | 55.29% |
CMYK | 10.64% | 26.24% | 0.00% |
44.71% |
HEX | 7E | 68 | 8D |
Decimal | 126 | 104 | 141 |
Binary | 1111110 | 1101000 | 10001101 |
Octal | 176 | 150 | 215 |
Examples of css and html codes for elements with #7E688D color. Also use rgb(126,104,141) instead hex code.
.myTextColor { color: #7E688D; }
<p style="color:#7E688D">This sample text font color is #7E688D.</p>
This text font color is #7E688D.
.myBgColor { background-color: #7E688D; }
<div style="background-color:#7E688D">Inner text</div>
This div background color is #7E688D.
.myBorderColor { border: 1px solid #7E688D; }
<div style="border:3px solid #7E688D">Div</div>
This div border color is #7E688D.
.myOpacity80 { color: #7E688D; opacity: 0.8; }
<p style="color:#7E688D;opacity:0.8;">80%</p>
Text with #7E688D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7E688D;}
<p style="text-shadow: 3px 3px 1px #7E688D">Text here.</p>
This text has shadow with #7E688D color.
.textShadow {text-shadow: 3px 3px 1px #7E688D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7E688D, 5px 5px 20px red">Text here.</p>
This text has shadow with #7E688D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7E688D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7E688D, Direction=45, Strength=4)">Text</p>
This text has shadow with #7E688D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7E688D; -webkit-box-shadow: 1px 1px 3px 2px #7E688D; box-shadow: 1px 1px 3px 2px #7E688D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7E688D; -webkit-box-shadow: 1px 1px 3px 2px #7E688D; box-shadow:1px 1px 3px 2px #7E688D;">
Div content here</div>
This text has color #7E688D on black background.
This text has color #7E688D on white background.
This text has black color on #7E688D background.
This text has white color on #7E688D background.