HEX: #882EAB
RGB: (136,46,171)
#882EAB contains mainly red and blue colors. Web safe color of #882EAB is #993399 (or #939).
#882EAB color RGB value is (136,46,171).
RGB: (136,46,171) (53%,18%,67%)
R 136 of 255 = 53%
G 46 of 255 = 18%
B 171 of 255 = 67%
R + G + B ~ 46%. #882EAB is middle color (not dark and not light).
R + G + B =
136 + 46 + 171 = 353 (100%)
R 136 of 353 ~ 38.53%
G 46 of 353 ~ 13.03%
B 171 of 353 ~ 48.44%
#882EAB color CMYK value is (20,73,0,33).
CMYK: (20,73,0,33) C20M73Y0K33 (20%,73%,0%,33%) (0.20/0.73/0.00/0.33)
88 | 2E | AB | |
---|---|---|---|
RGB | 136 | 46 | 171 |
HSL | 283° | 57.60% | 42.55% |
HSB/HSV | 283° | 73.10% | 67.06% |
CMYK | 20.47% | 73.10% | 0.00% |
32.94% |
HEX | 88 | 2E | AB |
Decimal | 136 | 46 | 171 |
Binary | 10001000 | 101110 | 10101011 |
Octal | 210 | 56 | 253 |
Examples of css and html codes for elements with #882EAB color. Also use rgb(136,46,171) instead hex code.
.myTextColor { color: #882EAB; }
<p style="color:#882EAB">This sample text font color is #882EAB.</p>
This text font color is #882EAB.
.myBgColor { background-color: #882EAB; }
<div style="background-color:#882EAB">Inner text</div>
This div background color is #882EAB.
.myBorderColor { border: 1px solid #882EAB; }
<div style="border:3px solid #882EAB">Div</div>
This div border color is #882EAB.
.myOpacity80 { color: #882EAB; opacity: 0.8; }
<p style="color:#882EAB;opacity:0.8;">80%</p>
Text with #882EAB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #882EAB;}
<p style="text-shadow: 3px 3px 1px #882EAB">Text here.</p>
This text has shadow with #882EAB color.
.textShadow {text-shadow: 3px 3px 1px #882EAB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #882EAB, 5px 5px 20px red">Text here.</p>
This text has shadow with #882EAB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#882EAB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#882EAB, Direction=45, Strength=4)">Text</p>
This text has shadow with #882EAB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #882EAB; -webkit-box-shadow: 1px 1px 3px 2px #882EAB; box-shadow: 1px 1px 3px 2px #882EAB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #882EAB; -webkit-box-shadow: 1px 1px 3px 2px #882EAB; box-shadow:1px 1px 3px 2px #882EAB;">
Div content here</div>
This text has color #882EAB on black background.
This text has color #882EAB on white background.
This text has black color on #882EAB background.
This text has white color on #882EAB background.