HEX: #7E53AA
RGB: (126,83,170)
#7E53AA contains mainly red and blue colors. Web safe color of #7E53AA is #666699 (or #669).
#7E53AA color RGB value is (126,83,170).
RGB: (126,83,170) (49%,33%,67%)
R 126 of 255 = 49%
G 83 of 255 = 33%
B 170 of 255 = 67%
R + G + B ~ 50%. #7E53AA is middle color (not dark and not light).
R + G + B =
126 + 83 + 170 = 379 (100%)
R 126 of 379 ~ 33.25%
G 83 of 379 ~ 21.9%
B 170 of 379 ~ 44.85%
#7E53AA color CMYK value is (26,51,0,33).
CMYK: (26,51,0,33) C26M51Y0K33 (26%,51%,0%,33%) (0.26/0.51/0.00/0.33)
7E | 53 | AA | |
---|---|---|---|
RGB | 126 | 83 | 170 |
HSL | 270° | 34.39% | 49.61% |
HSB/HSV | 270° | 51.18% | 66.67% |
CMYK | 25.88% | 51.18% | 0.00% |
33.33% |
HEX | 7E | 53 | AA |
Decimal | 126 | 83 | 170 |
Binary | 1111110 | 1010011 | 10101010 |
Octal | 176 | 123 | 252 |
Examples of css and html codes for elements with #7E53AA color. Also use rgb(126,83,170) instead hex code.
.myTextColor { color: #7E53AA; }
<p style="color:#7E53AA">This sample text font color is #7E53AA.</p>
This text font color is #7E53AA.
.myBgColor { background-color: #7E53AA; }
<div style="background-color:#7E53AA">Inner text</div>
This div background color is #7E53AA.
.myBorderColor { border: 1px solid #7E53AA; }
<div style="border:3px solid #7E53AA">Div</div>
This div border color is #7E53AA.
.myOpacity80 { color: #7E53AA; opacity: 0.8; }
<p style="color:#7E53AA;opacity:0.8;">80%</p>
Text with #7E53AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7E53AA;}
<p style="text-shadow: 3px 3px 1px #7E53AA">Text here.</p>
This text has shadow with #7E53AA color.
.textShadow {text-shadow: 3px 3px 1px #7E53AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7E53AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #7E53AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7E53AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7E53AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #7E53AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7E53AA; -webkit-box-shadow: 1px 1px 3px 2px #7E53AA; box-shadow: 1px 1px 3px 2px #7E53AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7E53AA; -webkit-box-shadow: 1px 1px 3px 2px #7E53AA; box-shadow:1px 1px 3px 2px #7E53AA;">
Div content here</div>
This text has color #7E53AA on black background.
This text has color #7E53AA on white background.
This text has black color on #7E53AA background.
This text has white color on #7E53AA background.