HEX: #A4707A
RGB: (164,112,122)
#A4707A contains red, green and blue colors in about the same proportion. Web safe color of #A4707A is #996666 (or #966).
#A4707A color RGB value is (164,112,122).
RGB: (164,112,122) (64%,44%,48%)
R 164 of 255 = 64%
G 112 of 255 = 44%
B 122 of 255 = 48%
R + G + B ~ 52%. #A4707A is middle color (not dark and not light).
R + G + B =
164 + 112 + 122 = 398 (100%)
R 164 of 398 ~ 41.21%
G 112 of 398 ~ 28.14%
B 122 of 398 ~ 30.65%
#A4707A color CMYK value is (0,32,26,36).
CMYK: (0,32,26,36) C0M32Y26K36 (0%,32%,26%,36%) (0.00/0.32/0.26/0.36)
A4 | 70 | 7A | |
---|---|---|---|
RGB | 164 | 112 | 122 |
HSL | 348° | 22.22% | 54.12% |
HSB/HSV | 348° | 31.71% | 64.31% |
CMYK | 0.00% | 31.71% | 25.61% |
35.69% |
HEX | A4 | 70 | 7A |
Decimal | 164 | 112 | 122 |
Binary | 10100100 | 1110000 | 1111010 |
Octal | 244 | 160 | 172 |
Examples of css and html codes for elements with #A4707A color. Also use rgb(164,112,122) instead hex code.
.myTextColor { color: #A4707A; }
<p style="color:#A4707A">This sample text font color is #A4707A.</p>
This text font color is #A4707A.
.myBgColor { background-color: #A4707A; }
<div style="background-color:#A4707A">Inner text</div>
This div background color is #A4707A.
.myBorderColor { border: 1px solid #A4707A; }
<div style="border:3px solid #A4707A">Div</div>
This div border color is #A4707A.
.myOpacity80 { color: #A4707A; opacity: 0.8; }
<p style="color:#A4707A;opacity:0.8;">80%</p>
Text with #A4707A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A4707A;}
<p style="text-shadow: 3px 3px 1px #A4707A">Text here.</p>
This text has shadow with #A4707A color.
.textShadow {text-shadow: 3px 3px 1px #A4707A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A4707A, 5px 5px 20px red">Text here.</p>
This text has shadow with #A4707A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A4707A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A4707A, Direction=45, Strength=4)">Text</p>
This text has shadow with #A4707A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A4707A; -webkit-box-shadow: 1px 1px 3px 2px #A4707A; box-shadow: 1px 1px 3px 2px #A4707A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A4707A; -webkit-box-shadow: 1px 1px 3px 2px #A4707A; box-shadow:1px 1px 3px 2px #A4707A;">
Div content here</div>
This text has color #A4707A on black background.
This text has color #A4707A on white background.
This text has black color on #A4707A background.
This text has white color on #A4707A background.