HEX: #AB7189
RGB: (171,113,137)
#AB7189 contains red, green and blue colors in about the same proportion. Web safe color of #AB7189 is #996699 (or #969).
#AB7189 color RGB value is (171,113,137).
RGB: (171,113,137) (67%,44%,54%)
R 171 of 255 = 67%
G 113 of 255 = 44%
B 137 of 255 = 54%
R + G + B ~ 55%. #AB7189 is middle color (not dark and not light).
R + G + B =
171 + 113 + 137 = 421 (100%)
R 171 of 421 ~ 40.62%
G 113 of 421 ~ 26.84%
B 137 of 421 ~ 32.54%
#AB7189 color CMYK value is (0,34,20,33).
CMYK: (0,34,20,33) C0M34Y20K33 (0%,34%,20%,33%) (0.00/0.34/0.20/0.33)
AB | 71 | 89 | |
---|---|---|---|
RGB | 171 | 113 | 137 |
HSL | 335° | 25.66% | 55.69% |
HSB/HSV | 335° | 33.92% | 67.06% |
CMYK | 0.00% | 33.92% | 19.88% |
32.94% |
HEX | AB | 71 | 89 |
Decimal | 171 | 113 | 137 |
Binary | 10101011 | 1110001 | 10001001 |
Octal | 253 | 161 | 211 |
Examples of css and html codes for elements with #AB7189 color. Also use rgb(171,113,137) instead hex code.
.myTextColor { color: #AB7189; }
<p style="color:#AB7189">This sample text font color is #AB7189.</p>
This text font color is #AB7189.
.myBgColor { background-color: #AB7189; }
<div style="background-color:#AB7189">Inner text</div>
This div background color is #AB7189.
.myBorderColor { border: 1px solid #AB7189; }
<div style="border:3px solid #AB7189">Div</div>
This div border color is #AB7189.
.myOpacity80 { color: #AB7189; opacity: 0.8; }
<p style="color:#AB7189;opacity:0.8;">80%</p>
Text with #AB7189 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB7189;}
<p style="text-shadow: 3px 3px 1px #AB7189">Text here.</p>
This text has shadow with #AB7189 color.
.textShadow {text-shadow: 3px 3px 1px #AB7189, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB7189, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB7189 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB7189, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB7189, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB7189 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB7189; -webkit-box-shadow: 1px 1px 3px 2px #AB7189; box-shadow: 1px 1px 3px 2px #AB7189; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB7189; -webkit-box-shadow: 1px 1px 3px 2px #AB7189; box-shadow:1px 1px 3px 2px #AB7189;">
Div content here</div>
This text has color #AB7189 on black background.
This text has color #AB7189 on white background.
This text has black color on #AB7189 background.
This text has white color on #AB7189 background.