HEX: #85506A
RGB: (133,80,106)
#85506A contains red, green and blue colors in about the same proportion. Web safe color of #85506A is #996666 (or #966).
#85506A color RGB value is (133,80,106).
RGB: (133,80,106) (52%,31%,42%)
R 133 of 255 = 52%
G 80 of 255 = 31%
B 106 of 255 = 42%
R + G + B ~ 42%. #85506A is middle color (not dark and not light).
R + G + B =
133 + 80 + 106 = 319 (100%)
R 133 of 319 ~ 41.69%
G 80 of 319 ~ 25.08%
B 106 of 319 ~ 33.23%
#85506A color CMYK value is (0,40,20,48).
CMYK: (0,40,20,48) C0M40Y20K48 (0%,40%,20%,48%) (0.00/0.40/0.20/0.48)
85 | 50 | 6A | |
---|---|---|---|
RGB | 133 | 80 | 106 |
HSL | 331° | 24.88% | 41.76% |
HSB/HSV | 331° | 39.85% | 52.16% |
CMYK | 0.00% | 39.85% | 20.30% |
47.84% |
HEX | 85 | 50 | 6A |
Decimal | 133 | 80 | 106 |
Binary | 10000101 | 1010000 | 1101010 |
Octal | 205 | 120 | 152 |
Examples of css and html codes for elements with #85506A color. Also use rgb(133,80,106) instead hex code.
.myTextColor { color: #85506A; }
<p style="color:#85506A">This sample text font color is #85506A.</p>
This text font color is #85506A.
.myBgColor { background-color: #85506A; }
<div style="background-color:#85506A">Inner text</div>
This div background color is #85506A.
.myBorderColor { border: 1px solid #85506A; }
<div style="border:3px solid #85506A">Div</div>
This div border color is #85506A.
.myOpacity80 { color: #85506A; opacity: 0.8; }
<p style="color:#85506A;opacity:0.8;">80%</p>
Text with #85506A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #85506A;}
<p style="text-shadow: 3px 3px 1px #85506A">Text here.</p>
This text has shadow with #85506A color.
.textShadow {text-shadow: 3px 3px 1px #85506A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #85506A, 5px 5px 20px red">Text here.</p>
This text has shadow with #85506A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#85506A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#85506A, Direction=45, Strength=4)">Text</p>
This text has shadow with #85506A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #85506A; -webkit-box-shadow: 1px 1px 3px 2px #85506A; box-shadow: 1px 1px 3px 2px #85506A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #85506A; -webkit-box-shadow: 1px 1px 3px 2px #85506A; box-shadow:1px 1px 3px 2px #85506A;">
Div content here</div>
This text has color #85506A on black background.
This text has color #85506A on white background.
This text has black color on #85506A background.
This text has white color on #85506A background.