HEX: #AB849B
RGB: (171,132,155)
#AB849B contains red, green and blue colors in about the same proportion. Web safe color of #AB849B is #999999 (or #999).
#AB849B color RGB value is (171,132,155).
RGB: (171,132,155) (67%,52%,61%)
R 171 of 255 = 67%
G 132 of 255 = 52%
B 155 of 255 = 61%
R + G + B ~ 60%. #AB849B is middle color (not dark and not light).
R + G + B =
171 + 132 + 155 = 458 (100%)
R 171 of 458 ~ 37.34%
G 132 of 458 ~ 28.82%
B 155 of 458 ~ 33.84%
#AB849B color CMYK value is (0,23,9,33).
CMYK: (0,23,9,33) C0M23Y9K33 (0%,23%,9%,33%) (0.00/0.23/0.09/0.33)
AB | 84 | 9B | |
---|---|---|---|
RGB | 171 | 132 | 155 |
HSL | 325° | 18.84% | 59.41% |
HSB/HSV | 325° | 22.81% | 67.06% |
CMYK | 0.00% | 22.81% | 9.36% |
32.94% |
HEX | AB | 84 | 9B |
Decimal | 171 | 132 | 155 |
Binary | 10101011 | 10000100 | 10011011 |
Octal | 253 | 204 | 233 |
Examples of css and html codes for elements with #AB849B color. Also use rgb(171,132,155) instead hex code.
.myTextColor { color: #AB849B; }
<p style="color:#AB849B">This sample text font color is #AB849B.</p>
This text font color is #AB849B.
.myBgColor { background-color: #AB849B; }
<div style="background-color:#AB849B">Inner text</div>
This div background color is #AB849B.
.myBorderColor { border: 1px solid #AB849B; }
<div style="border:3px solid #AB849B">Div</div>
This div border color is #AB849B.
.myOpacity80 { color: #AB849B; opacity: 0.8; }
<p style="color:#AB849B;opacity:0.8;">80%</p>
Text with #AB849B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB849B;}
<p style="text-shadow: 3px 3px 1px #AB849B">Text here.</p>
This text has shadow with #AB849B color.
.textShadow {text-shadow: 3px 3px 1px #AB849B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB849B, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB849B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB849B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB849B, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB849B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB849B; -webkit-box-shadow: 1px 1px 3px 2px #AB849B; box-shadow: 1px 1px 3px 2px #AB849B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB849B; -webkit-box-shadow: 1px 1px 3px 2px #AB849B; box-shadow:1px 1px 3px 2px #AB849B;">
Div content here</div>
This text has color #AB849B on black background.
This text has color #AB849B on white background.
This text has black color on #AB849B background.
This text has white color on #AB849B background.