HEX: #7E135A
RGB: (126,19,90)
#7E135A contains mainly red and blue colors. Web safe color of #7E135A is #660066 (or #606).
#7E135A color RGB value is (126,19,90).
RGB: (126,19,90) (49%,7%,35%)
R 126 of 255 = 49%
G 19 of 255 = 7%
B 90 of 255 = 35%
R + G + B ~ 30%. #7E135A is quite dark color.
R + G + B =
126 + 19 + 90 = 235 (100%)
R 126 of 235 ~ 53.62%
G 19 of 235 ~ 8.09%
B 90 of 235 ~ 38.3%
#7E135A color CMYK value is (0,85,29,51).
CMYK: (0,85,29,51) C0M85Y29K51 (0%,85%,29%,51%) (0.00/0.85/0.29/0.51)
7E | 13 | 5A | |
---|---|---|---|
RGB | 126 | 19 | 90 |
HSL | 320° | 73.79% | 28.43% |
HSB/HSV | 320° | 84.92% | 49.41% |
CMYK | 0.00% | 84.92% | 28.57% |
50.59% |
HEX | 7E | 13 | 5A |
Decimal | 126 | 19 | 90 |
Binary | 1111110 | 10011 | 1011010 |
Octal | 176 | 23 | 132 |
Examples of css and html codes for elements with #7E135A color. Also use rgb(126,19,90) instead hex code.
.myTextColor { color: #7E135A; }
<p style="color:#7E135A">This sample text font color is #7E135A.</p>
This text font color is #7E135A.
.myBgColor { background-color: #7E135A; }
<div style="background-color:#7E135A">Inner text</div>
This div background color is #7E135A.
.myBorderColor { border: 1px solid #7E135A; }
<div style="border:3px solid #7E135A">Div</div>
This div border color is #7E135A.
.myOpacity80 { color: #7E135A; opacity: 0.8; }
<p style="color:#7E135A;opacity:0.8;">80%</p>
Text with #7E135A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7E135A;}
<p style="text-shadow: 3px 3px 1px #7E135A">Text here.</p>
This text has shadow with #7E135A color.
.textShadow {text-shadow: 3px 3px 1px #7E135A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7E135A, 5px 5px 20px red">Text here.</p>
This text has shadow with #7E135A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7E135A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7E135A, Direction=45, Strength=4)">Text</p>
This text has shadow with #7E135A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7E135A; -webkit-box-shadow: 1px 1px 3px 2px #7E135A; box-shadow: 1px 1px 3px 2px #7E135A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7E135A; -webkit-box-shadow: 1px 1px 3px 2px #7E135A; box-shadow:1px 1px 3px 2px #7E135A;">
Div content here</div>
This text has color #7E135A on black background.
This text has color #7E135A on white background.
This text has black color on #7E135A background.
This text has white color on #7E135A background.