HEX: #7D73AC
RGB: (125,115,172)
#7D73AC contains red, green and blue colors in about the same proportion. Web safe color of #7D73AC is #666699 (or #669).
#7D73AC color RGB value is (125,115,172).
RGB: (125,115,172) (49%,45%,67%)
R 125 of 255 = 49%
G 115 of 255 = 45%
B 172 of 255 = 67%
R + G + B ~ 54%. #7D73AC is middle color (not dark and not light).
R + G + B =
125 + 115 + 172 = 412 (100%)
R 125 of 412 ~ 30.34%
G 115 of 412 ~ 27.91%
B 172 of 412 ~ 41.75%
#7D73AC color CMYK value is (27,33,0,33).
CMYK: (27,33,0,33) C27M33Y0K33 (27%,33%,0%,33%) (0.27/0.33/0.00/0.33)
7D | 73 | AC | |
---|---|---|---|
RGB | 125 | 115 | 172 |
HSL | 251° | 25.56% | 56.27% |
HSB/HSV | 251° | 33.14% | 67.45% |
CMYK | 27.33% | 33.14% | 0.00% |
32.55% |
HEX | 7D | 73 | AC |
Decimal | 125 | 115 | 172 |
Binary | 1111101 | 1110011 | 10101100 |
Octal | 175 | 163 | 254 |
Examples of css and html codes for elements with #7D73AC color. Also use rgb(125,115,172) instead hex code.
.myTextColor { color: #7D73AC; }
<p style="color:#7D73AC">This sample text font color is #7D73AC.</p>
This text font color is #7D73AC.
.myBgColor { background-color: #7D73AC; }
<div style="background-color:#7D73AC">Inner text</div>
This div background color is #7D73AC.
.myBorderColor { border: 1px solid #7D73AC; }
<div style="border:3px solid #7D73AC">Div</div>
This div border color is #7D73AC.
.myOpacity80 { color: #7D73AC; opacity: 0.8; }
<p style="color:#7D73AC;opacity:0.8;">80%</p>
Text with #7D73AC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7D73AC;}
<p style="text-shadow: 3px 3px 1px #7D73AC">Text here.</p>
This text has shadow with #7D73AC color.
.textShadow {text-shadow: 3px 3px 1px #7D73AC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7D73AC, 5px 5px 20px red">Text here.</p>
This text has shadow with #7D73AC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7D73AC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7D73AC, Direction=45, Strength=4)">Text</p>
This text has shadow with #7D73AC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7D73AC; -webkit-box-shadow: 1px 1px 3px 2px #7D73AC; box-shadow: 1px 1px 3px 2px #7D73AC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7D73AC; -webkit-box-shadow: 1px 1px 3px 2px #7D73AC; box-shadow:1px 1px 3px 2px #7D73AC;">
Div content here</div>
This text has color #7D73AC on black background.
This text has color #7D73AC on white background.
This text has black color on #7D73AC background.
This text has white color on #7D73AC background.