HEX: #AB697A
RGB: (171,105,122)
#AB697A contains mainly red and blue colors. Web safe color of #AB697A is #996666 (or #966).
#AB697A color RGB value is (171,105,122).
RGB: (171,105,122) (67%,41%,48%)
R 171 of 255 = 67%
G 105 of 255 = 41%
B 122 of 255 = 48%
R + G + B ~ 52%. #AB697A is middle color (not dark and not light).
R + G + B =
171 + 105 + 122 = 398 (100%)
R 171 of 398 ~ 42.96%
G 105 of 398 ~ 26.38%
B 122 of 398 ~ 30.65%
#AB697A color CMYK value is (0,39,29,33).
CMYK: (0,39,29,33) C0M39Y29K33 (0%,39%,29%,33%) (0.00/0.39/0.29/0.33)
AB | 69 | 7A | |
---|---|---|---|
RGB | 171 | 105 | 122 |
HSL | 345° | 28.21% | 54.12% |
HSB/HSV | 345° | 38.60% | 67.06% |
CMYK | 0.00% | 38.60% | 28.65% |
32.94% |
HEX | AB | 69 | 7A |
Decimal | 171 | 105 | 122 |
Binary | 10101011 | 1101001 | 1111010 |
Octal | 253 | 151 | 172 |
Examples of css and html codes for elements with #AB697A color. Also use rgb(171,105,122) instead hex code.
.myTextColor { color: #AB697A; }
<p style="color:#AB697A">This sample text font color is #AB697A.</p>
This text font color is #AB697A.
.myBgColor { background-color: #AB697A; }
<div style="background-color:#AB697A">Inner text</div>
This div background color is #AB697A.
.myBorderColor { border: 1px solid #AB697A; }
<div style="border:3px solid #AB697A">Div</div>
This div border color is #AB697A.
.myOpacity80 { color: #AB697A; opacity: 0.8; }
<p style="color:#AB697A;opacity:0.8;">80%</p>
Text with #AB697A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB697A;}
<p style="text-shadow: 3px 3px 1px #AB697A">Text here.</p>
This text has shadow with #AB697A color.
.textShadow {text-shadow: 3px 3px 1px #AB697A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB697A, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB697A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB697A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB697A, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB697A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB697A; -webkit-box-shadow: 1px 1px 3px 2px #AB697A; box-shadow: 1px 1px 3px 2px #AB697A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB697A; -webkit-box-shadow: 1px 1px 3px 2px #AB697A; box-shadow:1px 1px 3px 2px #AB697A;">
Div content here</div>
This text has color #AB697A on black background.
This text has color #AB697A on white background.
This text has black color on #AB697A background.
This text has white color on #AB697A background.