HEX: #73475D
RGB: (115,71,93)
#73475D contains red, green and blue colors in about the same proportion. Web safe color of #73475D is #663366 (or #636).
#73475D color RGB value is (115,71,93).
RGB: (115,71,93) (45%,28%,36%)
R 115 of 255 = 45%
G 71 of 255 = 28%
B 93 of 255 = 36%
R + G + B ~ 36%. #73475D is quite dark color.
R + G + B =
115 + 71 + 93 = 279 (100%)
R 115 of 279 ~ 41.22%
G 71 of 279 ~ 25.45%
B 93 of 279 ~ 33.33%
#73475D color CMYK value is (0,38,19,55).
CMYK: (0,38,19,55) C0M38Y19K55 (0%,38%,19%,55%) (0.00/0.38/0.19/0.55)
73 | 47 | 5D | |
---|---|---|---|
RGB | 115 | 71 | 93 |
HSL | 330° | 23.66% | 36.47% |
HSB/HSV | 330° | 38.26% | 45.10% |
CMYK | 0.00% | 38.26% | 19.13% |
54.90% |
HEX | 73 | 47 | 5D |
Decimal | 115 | 71 | 93 |
Binary | 1110011 | 1000111 | 1011101 |
Octal | 163 | 107 | 135 |
Examples of css and html codes for elements with #73475D color. Also use rgb(115,71,93) instead hex code.
.myTextColor { color: #73475D; }
<p style="color:#73475D">This sample text font color is #73475D.</p>
This text font color is #73475D.
.myBgColor { background-color: #73475D; }
<div style="background-color:#73475D">Inner text</div>
This div background color is #73475D.
.myBorderColor { border: 1px solid #73475D; }
<div style="border:3px solid #73475D">Div</div>
This div border color is #73475D.
.myOpacity80 { color: #73475D; opacity: 0.8; }
<p style="color:#73475D;opacity:0.8;">80%</p>
Text with #73475D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #73475D;}
<p style="text-shadow: 3px 3px 1px #73475D">Text here.</p>
This text has shadow with #73475D color.
.textShadow {text-shadow: 3px 3px 1px #73475D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #73475D, 5px 5px 20px red">Text here.</p>
This text has shadow with #73475D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#73475D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#73475D, Direction=45, Strength=4)">Text</p>
This text has shadow with #73475D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #73475D; -webkit-box-shadow: 1px 1px 3px 2px #73475D; box-shadow: 1px 1px 3px 2px #73475D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #73475D; -webkit-box-shadow: 1px 1px 3px 2px #73475D; box-shadow:1px 1px 3px 2px #73475D;">
Div content here</div>
This text has color #73475D on black background.
This text has color #73475D on white background.
This text has black color on #73475D background.
This text has white color on #73475D background.