HEX: #87240D
RGB: (135,36,13)
#87240D contains mainly red color. Web safe color of #87240D is #993300 (or #930).
#87240D color RGB value is (135,36,13).
RGB: (135,36,13) (53%,14%,5%)
R 135 of 255 = 53%
G 36 of 255 = 14%
B 13 of 255 = 5%
R + G + B ~ 24%. #87240D is dark color.
R + G + B =
135 + 36 + 13 = 184 (100%)
R 135 of 184 ~ 73.37%
G 36 of 184 ~ 19.57%
B 13 of 184 ~ 7.07%
#87240D color CMYK value is (0,73,90,47).
CMYK: (0,73,90,47) C0M73Y90K47 (0%,73%,90%,47%) (0.00/0.73/0.90/0.47)
87 | 24 | 0D | |
---|---|---|---|
RGB | 135 | 36 | 13 |
HSL | 11° | 82.43% | 29.02% |
HSB/HSV | 11° | 90.37% | 52.94% |
CMYK | 0.00% | 73.33% | 90.37% |
47.06% |
HEX | 87 | 24 | 0D |
Decimal | 135 | 36 | 13 |
Binary | 10000111 | 100100 | 1101 |
Octal | 207 | 44 | 15 |
Examples of css and html codes for elements with #87240D color. Also use rgb(135,36,13) instead hex code.
.myTextColor { color: #87240D; }
<p style="color:#87240D">This sample text font color is #87240D.</p>
This text font color is #87240D.
.myBgColor { background-color: #87240D; }
<div style="background-color:#87240D">Inner text</div>
This div background color is #87240D.
.myBorderColor { border: 1px solid #87240D; }
<div style="border:3px solid #87240D">Div</div>
This div border color is #87240D.
.myOpacity80 { color: #87240D; opacity: 0.8; }
<p style="color:#87240D;opacity:0.8;">80%</p>
Text with #87240D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #87240D;}
<p style="text-shadow: 3px 3px 1px #87240D">Text here.</p>
This text has shadow with #87240D color.
.textShadow {text-shadow: 3px 3px 1px #87240D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #87240D, 5px 5px 20px red">Text here.</p>
This text has shadow with #87240D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#87240D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#87240D, Direction=45, Strength=4)">Text</p>
This text has shadow with #87240D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #87240D; -webkit-box-shadow: 1px 1px 3px 2px #87240D; box-shadow: 1px 1px 3px 2px #87240D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #87240D; -webkit-box-shadow: 1px 1px 3px 2px #87240D; box-shadow:1px 1px 3px 2px #87240D;">
Div content here</div>
This text has color #87240D on black background.
This text has color #87240D on white background.
This text has black color on #87240D background.
This text has white color on #87240D background.