HEX: #AB949C
RGB: (171,148,156)
#AB949C contains red, green and blue colors in about the same proportion. Web safe color of #AB949C is #999999 (or #999).
#AB949C color RGB value is (171,148,156).
RGB: (171,148,156) (67%,58%,61%)
R 171 of 255 = 67%
G 148 of 255 = 58%
B 156 of 255 = 61%
R + G + B ~ 62%. #AB949C is quite light color.
R + G + B =
171 + 148 + 156 = 475 (100%)
R 171 of 475 ~ 36%
G 148 of 475 ~ 31.16%
B 156 of 475 ~ 32.84%
#AB949C color CMYK value is (0,13,9,33).
CMYK: (0,13,9,33) C0M13Y9K33 (0%,13%,9%,33%) (0.00/0.13/0.09/0.33)
AB | 94 | 9C | |
---|---|---|---|
RGB | 171 | 148 | 156 |
HSL | 339° | 12.04% | 62.55% |
HSB/HSV | 339° | 13.45% | 67.06% |
CMYK | 0.00% | 13.45% | 8.77% |
32.94% |
HEX | AB | 94 | 9C |
Decimal | 171 | 148 | 156 |
Binary | 10101011 | 10010100 | 10011100 |
Octal | 253 | 224 | 234 |
Examples of css and html codes for elements with #AB949C color. Also use rgb(171,148,156) instead hex code.
.myTextColor { color: #AB949C; }
<p style="color:#AB949C">This sample text font color is #AB949C.</p>
This text font color is #AB949C.
.myBgColor { background-color: #AB949C; }
<div style="background-color:#AB949C">Inner text</div>
This div background color is #AB949C.
.myBorderColor { border: 1px solid #AB949C; }
<div style="border:3px solid #AB949C">Div</div>
This div border color is #AB949C.
.myOpacity80 { color: #AB949C; opacity: 0.8; }
<p style="color:#AB949C;opacity:0.8;">80%</p>
Text with #AB949C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB949C;}
<p style="text-shadow: 3px 3px 1px #AB949C">Text here.</p>
This text has shadow with #AB949C color.
.textShadow {text-shadow: 3px 3px 1px #AB949C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB949C, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB949C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB949C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB949C, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB949C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB949C; -webkit-box-shadow: 1px 1px 3px 2px #AB949C; box-shadow: 1px 1px 3px 2px #AB949C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB949C; -webkit-box-shadow: 1px 1px 3px 2px #AB949C; box-shadow:1px 1px 3px 2px #AB949C;">
Div content here</div>
This text has color #AB949C on black background.
This text has color #AB949C on white background.
This text has black color on #AB949C background.
This text has white color on #AB949C background.