HEX: #A73B7D
RGB: (167,59,125)
#A73B7D contains mainly red and blue colors. Web safe color of #A73B7D is #993366 (or #936).
#A73B7D color RGB value is (167,59,125).
RGB: (167,59,125) (65%,23%,49%)
R 167 of 255 = 65%
G 59 of 255 = 23%
B 125 of 255 = 49%
R + G + B ~ 46%. #A73B7D is middle color (not dark and not light).
R + G + B =
167 + 59 + 125 = 351 (100%)
R 167 of 351 ~ 47.58%
G 59 of 351 ~ 16.81%
B 125 of 351 ~ 35.61%
#A73B7D color CMYK value is (0,65,25,35).
CMYK: (0,65,25,35) C0M65Y25K35 (0%,65%,25%,35%) (0.00/0.65/0.25/0.35)
A7 | 3B | 7D | |
---|---|---|---|
RGB | 167 | 59 | 125 |
HSL | 323° | 47.79% | 44.31% |
HSB/HSV | 323° | 64.67% | 65.49% |
CMYK | 0.00% | 64.67% | 25.15% |
34.51% |
HEX | A7 | 3B | 7D |
Decimal | 167 | 59 | 125 |
Binary | 10100111 | 111011 | 1111101 |
Octal | 247 | 73 | 175 |
Examples of css and html codes for elements with #A73B7D color. Also use rgb(167,59,125) instead hex code.
.myTextColor { color: #A73B7D; }
<p style="color:#A73B7D">This sample text font color is #A73B7D.</p>
This text font color is #A73B7D.
.myBgColor { background-color: #A73B7D; }
<div style="background-color:#A73B7D">Inner text</div>
This div background color is #A73B7D.
.myBorderColor { border: 1px solid #A73B7D; }
<div style="border:3px solid #A73B7D">Div</div>
This div border color is #A73B7D.
.myOpacity80 { color: #A73B7D; opacity: 0.8; }
<p style="color:#A73B7D;opacity:0.8;">80%</p>
Text with #A73B7D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A73B7D;}
<p style="text-shadow: 3px 3px 1px #A73B7D">Text here.</p>
This text has shadow with #A73B7D color.
.textShadow {text-shadow: 3px 3px 1px #A73B7D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A73B7D, 5px 5px 20px red">Text here.</p>
This text has shadow with #A73B7D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A73B7D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A73B7D, Direction=45, Strength=4)">Text</p>
This text has shadow with #A73B7D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A73B7D; -webkit-box-shadow: 1px 1px 3px 2px #A73B7D; box-shadow: 1px 1px 3px 2px #A73B7D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A73B7D; -webkit-box-shadow: 1px 1px 3px 2px #A73B7D; box-shadow:1px 1px 3px 2px #A73B7D;">
Div content here</div>
This text has color #A73B7D on black background.
This text has color #A73B7D on white background.
This text has black color on #A73B7D background.
This text has white color on #A73B7D background.