HEX: #7E1DB4
RGB: (126,29,180)
#7E1DB4 contains mainly red and blue colors. Web safe color of #7E1DB4 is #6633CC (or #63C).
#7E1DB4 color RGB value is (126,29,180).
RGB: (126,29,180) (49%,11%,71%)
R 126 of 255 = 49%
G 29 of 255 = 11%
B 180 of 255 = 71%
R + G + B ~ 44%. #7E1DB4 is middle color (not dark and not light).
R + G + B =
126 + 29 + 180 = 335 (100%)
R 126 of 335 ~ 37.61%
G 29 of 335 ~ 8.66%
B 180 of 335 ~ 53.73%
#7E1DB4 color CMYK value is (30,84,0,29).
CMYK: (30,84,0,29) C30M84Y0K29 (30%,84%,0%,29%) (0.30/0.84/0.00/0.29)
7E | 1D | B4 | |
---|---|---|---|
RGB | 126 | 29 | 180 |
HSL | 279° | 72.25% | 40.98% |
HSB/HSV | 279° | 83.89% | 70.59% |
CMYK | 30.00% | 83.89% | 0.00% |
29.41% |
HEX | 7E | 1D | B4 |
Decimal | 126 | 29 | 180 |
Binary | 1111110 | 11101 | 10110100 |
Octal | 176 | 35 | 264 |
Examples of css and html codes for elements with #7E1DB4 color. Also use rgb(126,29,180) instead hex code.
.myTextColor { color: #7E1DB4; }
<p style="color:#7E1DB4">This sample text font color is #7E1DB4.</p>
This text font color is #7E1DB4.
.myBgColor { background-color: #7E1DB4; }
<div style="background-color:#7E1DB4">Inner text</div>
This div background color is #7E1DB4.
.myBorderColor { border: 1px solid #7E1DB4; }
<div style="border:3px solid #7E1DB4">Div</div>
This div border color is #7E1DB4.
.myOpacity80 { color: #7E1DB4; opacity: 0.8; }
<p style="color:#7E1DB4;opacity:0.8;">80%</p>
Text with #7E1DB4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7E1DB4;}
<p style="text-shadow: 3px 3px 1px #7E1DB4">Text here.</p>
This text has shadow with #7E1DB4 color.
.textShadow {text-shadow: 3px 3px 1px #7E1DB4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7E1DB4, 5px 5px 20px red">Text here.</p>
This text has shadow with #7E1DB4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7E1DB4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7E1DB4, Direction=45, Strength=4)">Text</p>
This text has shadow with #7E1DB4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7E1DB4; -webkit-box-shadow: 1px 1px 3px 2px #7E1DB4; box-shadow: 1px 1px 3px 2px #7E1DB4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7E1DB4; -webkit-box-shadow: 1px 1px 3px 2px #7E1DB4; box-shadow:1px 1px 3px 2px #7E1DB4;">
Div content here</div>
This text has color #7E1DB4 on black background.
This text has color #7E1DB4 on white background.
This text has black color on #7E1DB4 background.
This text has white color on #7E1DB4 background.