HEX: #AB4E88
RGB: (171,78,136)
#AB4E88 contains mainly red and blue colors. Web safe color of #AB4E88 is #996699 (or #969).
#AB4E88 color RGB value is (171,78,136).
RGB: (171,78,136) (67%,31%,53%)
R 171 of 255 = 67%
G 78 of 255 = 31%
B 136 of 255 = 53%
R + G + B ~ 50%. #AB4E88 is middle color (not dark and not light).
R + G + B =
171 + 78 + 136 = 385 (100%)
R 171 of 385 ~ 44.42%
G 78 of 385 ~ 20.26%
B 136 of 385 ~ 35.32%
#AB4E88 color CMYK value is (0,54,20,33).
CMYK: (0,54,20,33) C0M54Y20K33 (0%,54%,20%,33%) (0.00/0.54/0.20/0.33)
AB | 4E | 88 | |
---|---|---|---|
RGB | 171 | 78 | 136 |
HSL | 323° | 37.35% | 48.82% |
HSB/HSV | 323° | 54.39% | 67.06% |
CMYK | 0.00% | 54.39% | 20.47% |
32.94% |
HEX | AB | 4E | 88 |
Decimal | 171 | 78 | 136 |
Binary | 10101011 | 1001110 | 10001000 |
Octal | 253 | 116 | 210 |
Examples of css and html codes for elements with #AB4E88 color. Also use rgb(171,78,136) instead hex code.
.myTextColor { color: #AB4E88; }
<p style="color:#AB4E88">This sample text font color is #AB4E88.</p>
This text font color is #AB4E88.
.myBgColor { background-color: #AB4E88; }
<div style="background-color:#AB4E88">Inner text</div>
This div background color is #AB4E88.
.myBorderColor { border: 1px solid #AB4E88; }
<div style="border:3px solid #AB4E88">Div</div>
This div border color is #AB4E88.
.myOpacity80 { color: #AB4E88; opacity: 0.8; }
<p style="color:#AB4E88;opacity:0.8;">80%</p>
Text with #AB4E88 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AB4E88;}
<p style="text-shadow: 3px 3px 1px #AB4E88">Text here.</p>
This text has shadow with #AB4E88 color.
.textShadow {text-shadow: 3px 3px 1px #AB4E88, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AB4E88, 5px 5px 20px red">Text here.</p>
This text has shadow with #AB4E88 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AB4E88, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AB4E88, Direction=45, Strength=4)">Text</p>
This text has shadow with #AB4E88 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AB4E88; -webkit-box-shadow: 1px 1px 3px 2px #AB4E88; box-shadow: 1px 1px 3px 2px #AB4E88; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AB4E88; -webkit-box-shadow: 1px 1px 3px 2px #AB4E88; box-shadow:1px 1px 3px 2px #AB4E88;">
Div content here</div>
This text has color #AB4E88 on black background.
This text has color #AB4E88 on white background.
This text has black color on #AB4E88 background.
This text has white color on #AB4E88 background.