HEX: #AB757E
RGB: (171,117,126)
#AB757E contains red, green and blue colors in about the same proportion. Web safe color of #AB757E is #996666 (or #966).
#AB757E color RGB value is (171,117,126).
RGB: (171,117,126) (67%,46%,49%)
R 171 of 255 = 67%
G 117 of 255 = 46%
B 126 of 255 = 49%
R + G + B ~ 54%. #AB757E is middle color (not dark and not light).
R + G + B =
171 + 117 + 126 = 414 (100%)
R 171 of 414 ~ 41.3%
G 117 of 414 ~ 28.26%
B 126 of 414 ~ 30.43%
#AB757E color CMYK value is (0,32,26,33).
CMYK: (0,32,26,33) C0M32Y26K33 (0%,32%,26%,33%) (0.00/0.32/0.26/0.33)
AB | 75 | 7E | |
---|---|---|---|
RGB | 171 | 117 | 126 |
HSL | 350° | 24.32% | 56.47% |
HSB/HSV | 350° | 31.58% | 67.06% |
CMYK | 0.00% | 31.58% | 26.32% |
32.94% |
HEX | AB | 75 | 7E |
Decimal | 171 | 117 | 126 |
Binary | 10101011 | 1110101 | 1111110 |
Octal | 253 | 165 | 176 |
Examples of css and html codes for elements with #AB757E color. Also use rgb(171,117,126) instead hex code.
.myTextColor { color: #AB757E; }
<p style="color:#AB757E">This sample text font color is #AB757E.</p>
This text font color is #AB757E.
.myBgColor { background-color: #AB757E; }
<div style="background-color:#AB757E">Inner text</div>
This div background color is #AB757E.
.myBorderColor { border: 1px solid #AB757E; }
<div style="border:3px solid #AB757E">Div</div>
This div border color is #AB757E.
.myOpacity80 { color: #AB757E; opacity: 0.8; }
<p style="color:#AB757E;opacity:0.8;">80%</p>
Text with #AB757E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB757E;}
<p style="text-shadow: 3px 3px 1px #AB757E">Text here.</p>
This text has shadow with #AB757E color.
.textShadow {text-shadow: 3px 3px 1px #AB757E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB757E, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB757E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB757E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB757E, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB757E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB757E; -webkit-box-shadow: 1px 1px 3px 2px #AB757E; box-shadow: 1px 1px 3px 2px #AB757E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB757E; -webkit-box-shadow: 1px 1px 3px 2px #AB757E; box-shadow:1px 1px 3px 2px #AB757E;">
Div content here</div>
This text has color #AB757E on black background.
This text has color #AB757E on white background.
This text has black color on #AB757E background.
This text has white color on #AB757E background.