HEX: #88823D
RGB: (136,130,61)
#88823D contains mainly red and green colors. Web safe color of #88823D is #999933 (or #993).
#88823D color RGB value is (136,130,61).
RGB: (136,130,61) (53%,51%,24%)
R 136 of 255 = 53%
G 130 of 255 = 51%
B 61 of 255 = 24%
R + G + B ~ 43%. #88823D is middle color (not dark and not light).
R + G + B =
136 + 130 + 61 = 327 (100%)
R 136 of 327 ~ 41.59%
G 130 of 327 ~ 39.76%
B 61 of 327 ~ 18.65%
#88823D color CMYK value is (0,4,55,47).
CMYK: (0,4,55,47) C0M4Y55K47 (0%,4%,55%,47%) (0.00/0.04/0.55/0.47)
88 | 82 | 3D | |
---|---|---|---|
RGB | 136 | 130 | 61 |
HSL | 55° | 38.07% | 38.63% |
HSB/HSV | 55° | 55.15% | 53.33% |
CMYK | 0.00% | 4.41% | 55.15% |
46.67% |
HEX | 88 | 82 | 3D |
Decimal | 136 | 130 | 61 |
Binary | 10001000 | 10000010 | 111101 |
Octal | 210 | 202 | 75 |
Examples of css and html codes for elements with #88823D color. Also use rgb(136,130,61) instead hex code.
.myTextColor { color: #88823D; }
<p style="color:#88823D">This sample text font color is #88823D.</p>
This text font color is #88823D.
.myBgColor { background-color: #88823D; }
<div style="background-color:#88823D">Inner text</div>
This div background color is #88823D.
.myBorderColor { border: 1px solid #88823D; }
<div style="border:3px solid #88823D">Div</div>
This div border color is #88823D.
.myOpacity80 { color: #88823D; opacity: 0.8; }
<p style="color:#88823D;opacity:0.8;">80%</p>
Text with #88823D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88823D;}
<p style="text-shadow: 3px 3px 1px #88823D">Text here.</p>
This text has shadow with #88823D color.
.textShadow {text-shadow: 3px 3px 1px #88823D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88823D, 5px 5px 20px red">Text here.</p>
This text has shadow with #88823D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88823D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88823D, Direction=45, Strength=4)">Text</p>
This text has shadow with #88823D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88823D; -webkit-box-shadow: 1px 1px 3px 2px #88823D; box-shadow: 1px 1px 3px 2px #88823D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88823D; -webkit-box-shadow: 1px 1px 3px 2px #88823D; box-shadow:1px 1px 3px 2px #88823D;">
Div content here</div>
This text has color #88823D on black background.
This text has color #88823D on white background.
This text has black color on #88823D background.
This text has white color on #88823D background.