HEX: #84497A
RGB: (132,73,122)
#84497A contains red, green and blue colors in about the same proportion. Web safe color of #84497A is #993366 (or #936).
#84497A color RGB value is (132,73,122).
RGB: (132,73,122) (52%,29%,48%)
R 132 of 255 = 52%
G 73 of 255 = 29%
B 122 of 255 = 48%
R + G + B ~ 43%. #84497A is middle color (not dark and not light).
R + G + B =
132 + 73 + 122 = 327 (100%)
R 132 of 327 ~ 40.37%
G 73 of 327 ~ 22.32%
B 122 of 327 ~ 37.31%
#84497A color CMYK value is (0,45,8,48).
CMYK: (0,45,8,48) C0M45Y8K48 (0%,45%,8%,48%) (0.00/0.45/0.08/0.48)
84 | 49 | 7A | |
---|---|---|---|
RGB | 132 | 73 | 122 |
HSL | 310° | 28.78% | 40.20% |
HSB/HSV | 310° | 44.70% | 51.76% |
CMYK | 0.00% | 44.70% | 7.58% |
48.24% |
HEX | 84 | 49 | 7A |
Decimal | 132 | 73 | 122 |
Binary | 10000100 | 1001001 | 1111010 |
Octal | 204 | 111 | 172 |
Examples of css and html codes for elements with #84497A color. Also use rgb(132,73,122) instead hex code.
.myTextColor { color: #84497A; }
<p style="color:#84497A">This sample text font color is #84497A.</p>
This text font color is #84497A.
.myBgColor { background-color: #84497A; }
<div style="background-color:#84497A">Inner text</div>
This div background color is #84497A.
.myBorderColor { border: 1px solid #84497A; }
<div style="border:3px solid #84497A">Div</div>
This div border color is #84497A.
.myOpacity80 { color: #84497A; opacity: 0.8; }
<p style="color:#84497A;opacity:0.8;">80%</p>
Text with #84497A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #84497A;}
<p style="text-shadow: 3px 3px 1px #84497A">Text here.</p>
This text has shadow with #84497A color.
.textShadow {text-shadow: 3px 3px 1px #84497A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #84497A, 5px 5px 20px red">Text here.</p>
This text has shadow with #84497A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#84497A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#84497A, Direction=45, Strength=4)">Text</p>
This text has shadow with #84497A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #84497A; -webkit-box-shadow: 1px 1px 3px 2px #84497A; box-shadow: 1px 1px 3px 2px #84497A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #84497A; -webkit-box-shadow: 1px 1px 3px 2px #84497A; box-shadow:1px 1px 3px 2px #84497A;">
Div content here</div>
This text has color #84497A on black background.
This text has color #84497A on white background.
This text has black color on #84497A background.
This text has white color on #84497A background.