HEX: #8B53AB
RGB: (139,83,171)
#8B53AB contains mainly red and blue colors. Web safe color of #8B53AB is #996699 (or #969).
#8B53AB color RGB value is (139,83,171).
RGB: (139,83,171) (55%,33%,67%)
R 139 of 255 = 55%
G 83 of 255 = 33%
B 171 of 255 = 67%
R + G + B ~ 52%. #8B53AB is middle color (not dark and not light).
R + G + B =
139 + 83 + 171 = 393 (100%)
R 139 of 393 ~ 35.37%
G 83 of 393 ~ 21.12%
B 171 of 393 ~ 43.51%
#8B53AB color CMYK value is (19,51,0,33).
CMYK: (19,51,0,33) C19M51Y0K33 (19%,51%,0%,33%) (0.19/0.51/0.00/0.33)
8B | 53 | AB | |
---|---|---|---|
RGB | 139 | 83 | 171 |
HSL | 278° | 34.65% | 49.80% |
HSB/HSV | 278° | 51.46% | 67.06% |
CMYK | 18.71% | 51.46% | 0.00% |
32.94% |
HEX | 8B | 53 | AB |
Decimal | 139 | 83 | 171 |
Binary | 10001011 | 1010011 | 10101011 |
Octal | 213 | 123 | 253 |
Examples of css and html codes for elements with #8B53AB color. Also use rgb(139,83,171) instead hex code.
.myTextColor { color: #8B53AB; }
<p style="color:#8B53AB">This sample text font color is #8B53AB.</p>
This text font color is #8B53AB.
.myBgColor { background-color: #8B53AB; }
<div style="background-color:#8B53AB">Inner text</div>
This div background color is #8B53AB.
.myBorderColor { border: 1px solid #8B53AB; }
<div style="border:3px solid #8B53AB">Div</div>
This div border color is #8B53AB.
.myOpacity80 { color: #8B53AB; opacity: 0.8; }
<p style="color:#8B53AB;opacity:0.8;">80%</p>
Text with #8B53AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #8B53AB;}
<p style="text-shadow: 3px 3px 1px #8B53AB">Text here.</p>
This text has shadow with #8B53AB color.
.textShadow {text-shadow: 3px 3px 1px #8B53AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #8B53AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #8B53AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#8B53AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#8B53AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #8B53AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #8B53AB; -webkit-box-shadow: 1px 1px 3px 2px #8B53AB; box-shadow: 1px 1px 3px 2px #8B53AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #8B53AB; -webkit-box-shadow: 1px 1px 3px 2px #8B53AB; box-shadow:1px 1px 3px 2px #8B53AB;">
Div content here</div>
This text has color #8B53AB on black background.
This text has color #8B53AB on white background.
This text has black color on #8B53AB background.
This text has white color on #8B53AB background.