HEX: #884020
RGB: (136,64,32)
#884020 contains mainly red color. Web safe color of #884020 is #993333 (or #933).
#884020 color RGB value is (136,64,32).
RGB: (136,64,32) (53%,25%,13%)
R 136 of 255 = 53%
G 64 of 255 = 25%
B 32 of 255 = 13%
R + G + B ~ 30%. #884020 is quite dark color.
R + G + B =
136 + 64 + 32 = 232 (100%)
R 136 of 232 ~ 58.62%
G 64 of 232 ~ 27.59%
B 32 of 232 ~ 13.79%
#884020 color CMYK value is (0,53,76,47).
CMYK: (0,53,76,47) C0M53Y76K47 (0%,53%,76%,47%) (0.00/0.53/0.76/0.47)
88 | 40 | 20 | |
---|---|---|---|
RGB | 136 | 64 | 32 |
HSL | 18° | 61.90% | 32.94% |
HSB/HSV | 18° | 76.47% | 53.33% |
CMYK | 0.00% | 52.94% | 76.47% |
46.67% |
HEX | 88 | 40 | 20 |
Decimal | 136 | 64 | 32 |
Binary | 10001000 | 1000000 | 100000 |
Octal | 210 | 100 | 40 |
Examples of css and html codes for elements with #884020 color. Also use rgb(136,64,32) instead hex code.
.myTextColor { color: #884020; }
<p style="color:#884020">This sample text font color is #884020.</p>
This text font color is #884020.
.myBgColor { background-color: #884020; }
<div style="background-color:#884020">Inner text</div>
This div background color is #884020.
.myBorderColor { border: 1px solid #884020; }
<div style="border:3px solid #884020">Div</div>
This div border color is #884020.
.myOpacity80 { color: #884020; opacity: 0.8; }
<p style="color:#884020;opacity:0.8;">80%</p>
Text with #884020 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #884020;}
<p style="text-shadow: 3px 3px 1px #884020">Text here.</p>
This text has shadow with #884020 color.
.textShadow {text-shadow: 3px 3px 1px #884020, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #884020, 5px 5px 20px red">Text here.</p>
This text has shadow with #884020 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#884020, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#884020, Direction=45, Strength=4)">Text</p>
This text has shadow with #884020 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #884020; -webkit-box-shadow: 1px 1px 3px 2px #884020; box-shadow: 1px 1px 3px 2px #884020; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #884020; -webkit-box-shadow: 1px 1px 3px 2px #884020; box-shadow:1px 1px 3px 2px #884020;">
Div content here</div>
This text has color #884020 on black background.
This text has color #884020 on white background.
This text has black color on #884020 background.
This text has white color on #884020 background.