HEX: #7E6CAE
RGB: (126,108,174)
#7E6CAE contains mainly red and blue colors. Web safe color of #7E6CAE is #666699 (or #669).
#7E6CAE color RGB value is (126,108,174).
RGB: (126,108,174) (49%,42%,68%)
R 126 of 255 = 49%
G 108 of 255 = 42%
B 174 of 255 = 68%
R + G + B ~ 53%. #7E6CAE is middle color (not dark and not light).
R + G + B =
126 + 108 + 174 = 408 (100%)
R 126 of 408 ~ 30.88%
G 108 of 408 ~ 26.47%
B 174 of 408 ~ 42.65%
#7E6CAE color CMYK value is (28,38,0,32).
CMYK: (28,38,0,32) C28M38Y0K32 (28%,38%,0%,32%) (0.28/0.38/0.00/0.32)
7E | 6C | AE | |
---|---|---|---|
RGB | 126 | 108 | 174 |
HSL | 256° | 28.95% | 55.29% |
HSB/HSV | 256° | 37.93% | 68.24% |
CMYK | 27.59% | 37.93% | 0.00% |
31.76% |
HEX | 7E | 6C | AE |
Decimal | 126 | 108 | 174 |
Binary | 1111110 | 1101100 | 10101110 |
Octal | 176 | 154 | 256 |
Examples of css and html codes for elements with #7E6CAE color. Also use rgb(126,108,174) instead hex code.
.myTextColor { color: #7E6CAE; }
<p style="color:#7E6CAE">This sample text font color is #7E6CAE.</p>
This text font color is #7E6CAE.
.myBgColor { background-color: #7E6CAE; }
<div style="background-color:#7E6CAE">Inner text</div>
This div background color is #7E6CAE.
.myBorderColor { border: 1px solid #7E6CAE; }
<div style="border:3px solid #7E6CAE">Div</div>
This div border color is #7E6CAE.
.myOpacity80 { color: #7E6CAE; opacity: 0.8; }
<p style="color:#7E6CAE;opacity:0.8;">80%</p>
Text with #7E6CAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7E6CAE;}
<p style="text-shadow: 3px 3px 1px #7E6CAE">Text here.</p>
This text has shadow with #7E6CAE color.
.textShadow {text-shadow: 3px 3px 1px #7E6CAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7E6CAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #7E6CAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7E6CAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7E6CAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #7E6CAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7E6CAE; -webkit-box-shadow: 1px 1px 3px 2px #7E6CAE; box-shadow: 1px 1px 3px 2px #7E6CAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7E6CAE; -webkit-box-shadow: 1px 1px 3px 2px #7E6CAE; box-shadow:1px 1px 3px 2px #7E6CAE;">
Div content here</div>
This text has color #7E6CAE on black background.
This text has color #7E6CAE on white background.
This text has black color on #7E6CAE background.
This text has white color on #7E6CAE background.