HEX: #704A6F
RGB: (112,74,111)
#704A6F contains red, green and blue colors in about the same proportion. Web safe color of #704A6F is #663366 (or #636).
#704A6F color RGB value is (112,74,111).
RGB: (112,74,111) (44%,29%,44%)
R 112 of 255 = 44%
G 74 of 255 = 29%
B 111 of 255 = 44%
R + G + B ~ 39%. #704A6F is quite dark color.
R + G + B =
112 + 74 + 111 = 297 (100%)
R 112 of 297 ~ 37.71%
G 74 of 297 ~ 24.92%
B 111 of 297 ~ 37.37%
#704A6F color CMYK value is (0,34,1,56).
CMYK: (0,34,1,56) C0M34Y1K56 (0%,34%,1%,56%) (0.00/0.34/0.01/0.56)
70 | 4A | 6F | |
---|---|---|---|
RGB | 112 | 74 | 111 |
HSL | 302° | 20.43% | 36.47% |
HSB/HSV | 302° | 33.93% | 43.92% |
CMYK | 0.00% | 33.93% | 0.89% |
56.08% |
HEX | 70 | 4A | 6F |
Decimal | 112 | 74 | 111 |
Binary | 1110000 | 1001010 | 1101111 |
Octal | 160 | 112 | 157 |
Examples of css and html codes for elements with #704A6F color. Also use rgb(112,74,111) instead hex code.
.myTextColor { color: #704A6F; }
<p style="color:#704A6F">This sample text font color is #704A6F.</p>
This text font color is #704A6F.
.myBgColor { background-color: #704A6F; }
<div style="background-color:#704A6F">Inner text</div>
This div background color is #704A6F.
.myBorderColor { border: 1px solid #704A6F; }
<div style="border:3px solid #704A6F">Div</div>
This div border color is #704A6F.
.myOpacity80 { color: #704A6F; opacity: 0.8; }
<p style="color:#704A6F;opacity:0.8;">80%</p>
Text with #704A6F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #704A6F;}
<p style="text-shadow: 3px 3px 1px #704A6F">Text here.</p>
This text has shadow with #704A6F color.
.textShadow {text-shadow: 3px 3px 1px #704A6F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #704A6F, 5px 5px 20px red">Text here.</p>
This text has shadow with #704A6F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#704A6F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#704A6F, Direction=45, Strength=4)">Text</p>
This text has shadow with #704A6F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #704A6F; -webkit-box-shadow: 1px 1px 3px 2px #704A6F; box-shadow: 1px 1px 3px 2px #704A6F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #704A6F; -webkit-box-shadow: 1px 1px 3px 2px #704A6F; box-shadow:1px 1px 3px 2px #704A6F;">
Div content here</div>
This text has color #704A6F on black background.
This text has color #704A6F on white background.
This text has black color on #704A6F background.
This text has white color on #704A6F background.