HEX: #AB766F
RGB: (171,118,111)
#AB766F contains mainly red and green colors. Web safe color of #AB766F is #996666 (or #966).
#AB766F color RGB value is (171,118,111).
RGB: (171,118,111) (67%,46%,44%)
R 171 of 255 = 67%
G 118 of 255 = 46%
B 111 of 255 = 44%
R + G + B ~ 52%. #AB766F is middle color (not dark and not light).
R + G + B =
171 + 118 + 111 = 400 (100%)
R 171 of 400 ~ 42.75%
G 118 of 400 ~ 29.5%
B 111 of 400 ~ 27.75%
#AB766F color CMYK value is (0,31,35,33).
CMYK: (0,31,35,33) C0M31Y35K33 (0%,31%,35%,33%) (0.00/0.31/0.35/0.33)
AB | 76 | 6F | |
---|---|---|---|
RGB | 171 | 118 | 111 |
HSL | 7° | 26.32% | 55.29% |
HSB/HSV | 7° | 35.09% | 67.06% |
CMYK | 0.00% | 30.99% | 35.09% |
32.94% |
HEX | AB | 76 | 6F |
Decimal | 171 | 118 | 111 |
Binary | 10101011 | 1110110 | 1101111 |
Octal | 253 | 166 | 157 |
Examples of css and html codes for elements with #AB766F color. Also use rgb(171,118,111) instead hex code.
.myTextColor { color: #AB766F; }
<p style="color:#AB766F">This sample text font color is #AB766F.</p>
This text font color is #AB766F.
.myBgColor { background-color: #AB766F; }
<div style="background-color:#AB766F">Inner text</div>
This div background color is #AB766F.
.myBorderColor { border: 1px solid #AB766F; }
<div style="border:3px solid #AB766F">Div</div>
This div border color is #AB766F.
.myOpacity80 { color: #AB766F; opacity: 0.8; }
<p style="color:#AB766F;opacity:0.8;">80%</p>
Text with #AB766F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB766F;}
<p style="text-shadow: 3px 3px 1px #AB766F">Text here.</p>
This text has shadow with #AB766F color.
.textShadow {text-shadow: 3px 3px 1px #AB766F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB766F, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB766F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB766F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB766F, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB766F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB766F; -webkit-box-shadow: 1px 1px 3px 2px #AB766F; box-shadow: 1px 1px 3px 2px #AB766F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB766F; -webkit-box-shadow: 1px 1px 3px 2px #AB766F; box-shadow:1px 1px 3px 2px #AB766F;">
Div content here</div>
This text has color #AB766F on black background.
This text has color #AB766F on white background.
This text has black color on #AB766F background.
This text has white color on #AB766F background.