HEX: #AB7F6E
RGB: (171,127,110)
#AB7F6E contains mainly red and green colors. Web safe color of #AB7F6E is #996666 (or #966).
#AB7F6E color RGB value is (171,127,110).
RGB: (171,127,110) (67%,50%,43%)
R 171 of 255 = 67%
G 127 of 255 = 50%
B 110 of 255 = 43%
R + G + B ~ 53%. #AB7F6E is middle color (not dark and not light).
R + G + B =
171 + 127 + 110 = 408 (100%)
R 171 of 408 ~ 41.91%
G 127 of 408 ~ 31.13%
B 110 of 408 ~ 26.96%
#AB7F6E color CMYK value is (0,26,36,33).
CMYK: (0,26,36,33) C0M26Y36K33 (0%,26%,36%,33%) (0.00/0.26/0.36/0.33)
AB | 7F | 6E | |
---|---|---|---|
RGB | 171 | 127 | 110 |
HSL | 17° | 26.64% | 55.10% |
HSB/HSV | 17° | 35.67% | 67.06% |
CMYK | 0.00% | 25.73% | 35.67% |
32.94% |
HEX | AB | 7F | 6E |
Decimal | 171 | 127 | 110 |
Binary | 10101011 | 1111111 | 1101110 |
Octal | 253 | 177 | 156 |
Examples of css and html codes for elements with #AB7F6E color. Also use rgb(171,127,110) instead hex code.
.myTextColor { color: #AB7F6E; }
<p style="color:#AB7F6E">This sample text font color is #AB7F6E.</p>
This text font color is #AB7F6E.
.myBgColor { background-color: #AB7F6E; }
<div style="background-color:#AB7F6E">Inner text</div>
This div background color is #AB7F6E.
.myBorderColor { border: 1px solid #AB7F6E; }
<div style="border:3px solid #AB7F6E">Div</div>
This div border color is #AB7F6E.
.myOpacity80 { color: #AB7F6E; opacity: 0.8; }
<p style="color:#AB7F6E;opacity:0.8;">80%</p>
Text with #AB7F6E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB7F6E;}
<p style="text-shadow: 3px 3px 1px #AB7F6E">Text here.</p>
This text has shadow with #AB7F6E color.
.textShadow {text-shadow: 3px 3px 1px #AB7F6E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB7F6E, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB7F6E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB7F6E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB7F6E, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB7F6E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB7F6E; -webkit-box-shadow: 1px 1px 3px 2px #AB7F6E; box-shadow: 1px 1px 3px 2px #AB7F6E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB7F6E; -webkit-box-shadow: 1px 1px 3px 2px #AB7F6E; box-shadow:1px 1px 3px 2px #AB7F6E;">
Div content here</div>
This text has color #AB7F6E on black background.
This text has color #AB7F6E on white background.
This text has black color on #AB7F6E background.
This text has white color on #AB7F6E background.