HEX: #884B4D
RGB: (136,75,77)
#884B4D contains mainly red and blue colors. Web safe color of #884B4D is #993333 (or #933).
#884B4D color RGB value is (136,75,77).
RGB: (136,75,77) (53%,29%,30%)
R 136 of 255 = 53%
G 75 of 255 = 29%
B 77 of 255 = 30%
R + G + B ~ 37%. #884B4D is quite dark color.
R + G + B =
136 + 75 + 77 = 288 (100%)
R 136 of 288 ~ 47.22%
G 75 of 288 ~ 26.04%
B 77 of 288 ~ 26.74%
#884B4D color CMYK value is (0,45,43,47).
CMYK: (0,45,43,47) C0M45Y43K47 (0%,45%,43%,47%) (0.00/0.45/0.43/0.47)
88 | 4B | 4D | |
---|---|---|---|
RGB | 136 | 75 | 77 |
HSL | 358° | 28.91% | 41.37% |
HSB/HSV | 358° | 44.85% | 53.33% |
CMYK | 0.00% | 44.85% | 43.38% |
46.67% |
HEX | 88 | 4B | 4D |
Decimal | 136 | 75 | 77 |
Binary | 10001000 | 1001011 | 1001101 |
Octal | 210 | 113 | 115 |
Examples of css and html codes for elements with #884B4D color. Also use rgb(136,75,77) instead hex code.
.myTextColor { color: #884B4D; }
<p style="color:#884B4D">This sample text font color is #884B4D.</p>
This text font color is #884B4D.
.myBgColor { background-color: #884B4D; }
<div style="background-color:#884B4D">Inner text</div>
This div background color is #884B4D.
.myBorderColor { border: 1px solid #884B4D; }
<div style="border:3px solid #884B4D">Div</div>
This div border color is #884B4D.
.myOpacity80 { color: #884B4D; opacity: 0.8; }
<p style="color:#884B4D;opacity:0.8;">80%</p>
Text with #884B4D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #884B4D;}
<p style="text-shadow: 3px 3px 1px #884B4D">Text here.</p>
This text has shadow with #884B4D color.
.textShadow {text-shadow: 3px 3px 1px #884B4D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #884B4D, 5px 5px 20px red">Text here.</p>
This text has shadow with #884B4D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#884B4D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#884B4D, Direction=45, Strength=4)">Text</p>
This text has shadow with #884B4D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #884B4D; -webkit-box-shadow: 1px 1px 3px 2px #884B4D; box-shadow: 1px 1px 3px 2px #884B4D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #884B4D; -webkit-box-shadow: 1px 1px 3px 2px #884B4D; box-shadow:1px 1px 3px 2px #884B4D;">
Div content here</div>
This text has color #884B4D on black background.
This text has color #884B4D on white background.
This text has black color on #884B4D background.
This text has white color on #884B4D background.