HEX: #873F5F
RGB: (135,63,95)
#873F5F contains mainly red and blue colors. Web safe color of #873F5F is #993366 (or #936).
#873F5F color RGB value is (135,63,95).
RGB: (135,63,95) (53%,25%,37%)
R 135 of 255 = 53%
G 63 of 255 = 25%
B 95 of 255 = 37%
R + G + B ~ 38%. #873F5F is quite dark color.
R + G + B =
135 + 63 + 95 = 293 (100%)
R 135 of 293 ~ 46.08%
G 63 of 293 ~ 21.5%
B 95 of 293 ~ 32.42%
#873F5F color CMYK value is (0,53,30,47).
CMYK: (0,53,30,47) C0M53Y30K47 (0%,53%,30%,47%) (0.00/0.53/0.30/0.47)
87 | 3F | 5F | |
---|---|---|---|
RGB | 135 | 63 | 95 |
HSL | 333° | 36.36% | 38.82% |
HSB/HSV | 333° | 53.33% | 52.94% |
CMYK | 0.00% | 53.33% | 29.63% |
47.06% |
HEX | 87 | 3F | 5F |
Decimal | 135 | 63 | 95 |
Binary | 10000111 | 111111 | 1011111 |
Octal | 207 | 77 | 137 |
Examples of css and html codes for elements with #873F5F color. Also use rgb(135,63,95) instead hex code.
.myTextColor { color: #873F5F; }
<p style="color:#873F5F">This sample text font color is #873F5F.</p>
This text font color is #873F5F.
.myBgColor { background-color: #873F5F; }
<div style="background-color:#873F5F">Inner text</div>
This div background color is #873F5F.
.myBorderColor { border: 1px solid #873F5F; }
<div style="border:3px solid #873F5F">Div</div>
This div border color is #873F5F.
.myOpacity80 { color: #873F5F; opacity: 0.8; }
<p style="color:#873F5F;opacity:0.8;">80%</p>
Text with #873F5F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #873F5F;}
<p style="text-shadow: 3px 3px 1px #873F5F">Text here.</p>
This text has shadow with #873F5F color.
.textShadow {text-shadow: 3px 3px 1px #873F5F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #873F5F, 5px 5px 20px red">Text here.</p>
This text has shadow with #873F5F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#873F5F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#873F5F, Direction=45, Strength=4)">Text</p>
This text has shadow with #873F5F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #873F5F; -webkit-box-shadow: 1px 1px 3px 2px #873F5F; box-shadow: 1px 1px 3px 2px #873F5F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #873F5F; -webkit-box-shadow: 1px 1px 3px 2px #873F5F; box-shadow:1px 1px 3px 2px #873F5F;">
Div content here</div>
This text has color #873F5F on black background.
This text has color #873F5F on white background.
This text has black color on #873F5F background.
This text has white color on #873F5F background.