HEX: #856DAA
RGB: (133,109,170)
#856DAA contains mainly red and blue colors. Web safe color of #856DAA is #996699 (or #969).
#856DAA color RGB value is (133,109,170).
RGB: (133,109,170) (52%,43%,67%)
R 133 of 255 = 52%
G 109 of 255 = 43%
B 170 of 255 = 67%
R + G + B ~ 54%. #856DAA is middle color (not dark and not light).
R + G + B =
133 + 109 + 170 = 412 (100%)
R 133 of 412 ~ 32.28%
G 109 of 412 ~ 26.46%
B 170 of 412 ~ 41.26%
#856DAA color CMYK value is (22,36,0,33).
CMYK: (22,36,0,33) C22M36Y0K33 (22%,36%,0%,33%) (0.22/0.36/0.00/0.33)
85 | 6D | AA | |
---|---|---|---|
RGB | 133 | 109 | 170 |
HSL | 264° | 26.41% | 54.71% |
HSB/HSV | 264° | 35.88% | 66.67% |
CMYK | 21.76% | 35.88% | 0.00% |
33.33% |
HEX | 85 | 6D | AA |
Decimal | 133 | 109 | 170 |
Binary | 10000101 | 1101101 | 10101010 |
Octal | 205 | 155 | 252 |
Examples of css and html codes for elements with #856DAA color. Also use rgb(133,109,170) instead hex code.
.myTextColor { color: #856DAA; }
<p style="color:#856DAA">This sample text font color is #856DAA.</p>
This text font color is #856DAA.
.myBgColor { background-color: #856DAA; }
<div style="background-color:#856DAA">Inner text</div>
This div background color is #856DAA.
.myBorderColor { border: 1px solid #856DAA; }
<div style="border:3px solid #856DAA">Div</div>
This div border color is #856DAA.
.myOpacity80 { color: #856DAA; opacity: 0.8; }
<p style="color:#856DAA;opacity:0.8;">80%</p>
Text with #856DAA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #856DAA;}
<p style="text-shadow: 3px 3px 1px #856DAA">Text here.</p>
This text has shadow with #856DAA color.
.textShadow {text-shadow: 3px 3px 1px #856DAA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #856DAA, 5px 5px 20px red">Text here.</p>
This text has shadow with #856DAA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#856DAA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#856DAA, Direction=45, Strength=4)">Text</p>
This text has shadow with #856DAA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #856DAA; -webkit-box-shadow: 1px 1px 3px 2px #856DAA; box-shadow: 1px 1px 3px 2px #856DAA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #856DAA; -webkit-box-shadow: 1px 1px 3px 2px #856DAA; box-shadow:1px 1px 3px 2px #856DAA;">
Div content here</div>
This text has color #856DAA on black background.
This text has color #856DAA on white background.
This text has black color on #856DAA background.
This text has white color on #856DAA background.