HEX: #85529D
RGB: (133,82,157)
#85529D contains mainly red and blue colors. Web safe color of #85529D is #996699 (or #969).
#85529D color RGB value is (133,82,157).
RGB: (133,82,157) (52%,32%,62%)
R 133 of 255 = 52%
G 82 of 255 = 32%
B 157 of 255 = 62%
R + G + B ~ 49%. #85529D is middle color (not dark and not light).
R + G + B =
133 + 82 + 157 = 372 (100%)
R 133 of 372 ~ 35.75%
G 82 of 372 ~ 22.04%
B 157 of 372 ~ 42.2%
#85529D color CMYK value is (15,48,0,38).
CMYK: (15,48,0,38) C15M48Y0K38 (15%,48%,0%,38%) (0.15/0.48/0.00/0.38)
85 | 52 | 9D | |
---|---|---|---|
RGB | 133 | 82 | 157 |
HSL | 281° | 31.38% | 46.86% |
HSB/HSV | 281° | 47.77% | 61.57% |
CMYK | 15.29% | 47.77% | 0.00% |
38.43% |
HEX | 85 | 52 | 9D |
Decimal | 133 | 82 | 157 |
Binary | 10000101 | 1010010 | 10011101 |
Octal | 205 | 122 | 235 |
Examples of css and html codes for elements with #85529D color. Also use rgb(133,82,157) instead hex code.
.myTextColor { color: #85529D; }
<p style="color:#85529D">This sample text font color is #85529D.</p>
This text font color is #85529D.
.myBgColor { background-color: #85529D; }
<div style="background-color:#85529D">Inner text</div>
This div background color is #85529D.
.myBorderColor { border: 1px solid #85529D; }
<div style="border:3px solid #85529D">Div</div>
This div border color is #85529D.
.myOpacity80 { color: #85529D; opacity: 0.8; }
<p style="color:#85529D;opacity:0.8;">80%</p>
Text with #85529D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #85529D;}
<p style="text-shadow: 3px 3px 1px #85529D">Text here.</p>
This text has shadow with #85529D color.
.textShadow {text-shadow: 3px 3px 1px #85529D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #85529D, 5px 5px 20px red">Text here.</p>
This text has shadow with #85529D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#85529D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#85529D, Direction=45, Strength=4)">Text</p>
This text has shadow with #85529D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #85529D; -webkit-box-shadow: 1px 1px 3px 2px #85529D; box-shadow: 1px 1px 3px 2px #85529D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #85529D; -webkit-box-shadow: 1px 1px 3px 2px #85529D; box-shadow:1px 1px 3px 2px #85529D;">
Div content here</div>
This text has color #85529D on black background.
This text has color #85529D on white background.
This text has black color on #85529D background.
This text has white color on #85529D background.