HEX: #A4677F
RGB: (164,103,127)
#A4677F contains mainly red and blue colors. Web safe color of #A4677F is #996666 (or #966).
#A4677F color RGB value is (164,103,127).
RGB: (164,103,127) (64%,40%,50%)
R 164 of 255 = 64%
G 103 of 255 = 40%
B 127 of 255 = 50%
R + G + B ~ 51%. #A4677F is middle color (not dark and not light).
R + G + B =
164 + 103 + 127 = 394 (100%)
R 164 of 394 ~ 41.62%
G 103 of 394 ~ 26.14%
B 127 of 394 ~ 32.23%
#A4677F color CMYK value is (0,37,23,36).
CMYK: (0,37,23,36) C0M37Y23K36 (0%,37%,23%,36%) (0.00/0.37/0.23/0.36)
A4 | 67 | 7F | |
---|---|---|---|
RGB | 164 | 103 | 127 |
HSL | 336° | 25.10% | 52.35% |
HSB/HSV | 336° | 37.20% | 64.31% |
CMYK | 0.00% | 37.20% | 22.56% |
35.69% |
HEX | A4 | 67 | 7F |
Decimal | 164 | 103 | 127 |
Binary | 10100100 | 1100111 | 1111111 |
Octal | 244 | 147 | 177 |
Examples of css and html codes for elements with #A4677F color. Also use rgb(164,103,127) instead hex code.
.myTextColor { color: #A4677F; }
<p style="color:#A4677F">This sample text font color is #A4677F.</p>
This text font color is #A4677F.
.myBgColor { background-color: #A4677F; }
<div style="background-color:#A4677F">Inner text</div>
This div background color is #A4677F.
.myBorderColor { border: 1px solid #A4677F; }
<div style="border:3px solid #A4677F">Div</div>
This div border color is #A4677F.
.myOpacity80 { color: #A4677F; opacity: 0.8; }
<p style="color:#A4677F;opacity:0.8;">80%</p>
Text with #A4677F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A4677F;}
<p style="text-shadow: 3px 3px 1px #A4677F">Text here.</p>
This text has shadow with #A4677F color.
.textShadow {text-shadow: 3px 3px 1px #A4677F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A4677F, 5px 5px 20px red">Text here.</p>
This text has shadow with #A4677F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A4677F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A4677F, Direction=45, Strength=4)">Text</p>
This text has shadow with #A4677F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A4677F; -webkit-box-shadow: 1px 1px 3px 2px #A4677F; box-shadow: 1px 1px 3px 2px #A4677F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A4677F; -webkit-box-shadow: 1px 1px 3px 2px #A4677F; box-shadow:1px 1px 3px 2px #A4677F;">
Div content here</div>
This text has color #A4677F on black background.
This text has color #A4677F on white background.
This text has black color on #A4677F background.
This text has white color on #A4677F background.