HEX: #AB674D
RGB: (171,103,77)
#AB674D contains mainly red color. Web safe color of #AB674D is #996633 (or #963).
#AB674D color RGB value is (171,103,77).
RGB: (171,103,77) (67%,40%,30%)
R 171 of 255 = 67%
G 103 of 255 = 40%
B 77 of 255 = 30%
R + G + B ~ 46%. #AB674D is middle color (not dark and not light).
R + G + B =
171 + 103 + 77 = 351 (100%)
R 171 of 351 ~ 48.72%
G 103 of 351 ~ 29.34%
B 77 of 351 ~ 21.94%
#AB674D color CMYK value is (0,40,55,33).
CMYK: (0,40,55,33) C0M40Y55K33 (0%,40%,55%,33%) (0.00/0.40/0.55/0.33)
AB | 67 | 4D | |
---|---|---|---|
RGB | 171 | 103 | 77 |
HSL | 17° | 37.90% | 48.63% |
HSB/HSV | 17° | 54.97% | 67.06% |
CMYK | 0.00% | 39.77% | 54.97% |
32.94% |
HEX | AB | 67 | 4D |
Decimal | 171 | 103 | 77 |
Binary | 10101011 | 1100111 | 1001101 |
Octal | 253 | 147 | 115 |
Examples of css and html codes for elements with #AB674D color. Also use rgb(171,103,77) instead hex code.
.myTextColor { color: #AB674D; }
<p style="color:#AB674D">This sample text font color is #AB674D.</p>
This text font color is #AB674D.
.myBgColor { background-color: #AB674D; }
<div style="background-color:#AB674D">Inner text</div>
This div background color is #AB674D.
.myBorderColor { border: 1px solid #AB674D; }
<div style="border:3px solid #AB674D">Div</div>
This div border color is #AB674D.
.myOpacity80 { color: #AB674D; opacity: 0.8; }
<p style="color:#AB674D;opacity:0.8;">80%</p>
Text with #AB674D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB674D;}
<p style="text-shadow: 3px 3px 1px #AB674D">Text here.</p>
This text has shadow with #AB674D color.
.textShadow {text-shadow: 3px 3px 1px #AB674D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB674D, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB674D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB674D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB674D, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB674D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB674D; -webkit-box-shadow: 1px 1px 3px 2px #AB674D; box-shadow: 1px 1px 3px 2px #AB674D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB674D; -webkit-box-shadow: 1px 1px 3px 2px #AB674D; box-shadow:1px 1px 3px 2px #AB674D;">
Div content here</div>
This text has color #AB674D on black background.
This text has color #AB674D on white background.
This text has black color on #AB674D background.
This text has white color on #AB674D background.