HEX: #B9824C
RGB: (185,130,76)
#B9824C contains mainly red and green colors. Web safe color of #B9824C is #CC9933 (or #C93).
#B9824C color RGB value is (185,130,76).
RGB: (185,130,76) (73%,51%,30%)
R 185 of 255 = 73%
G 130 of 255 = 51%
B 76 of 255 = 30%
R + G + B ~ 51%. #B9824C is middle color (not dark and not light).
R + G + B =
185 + 130 + 76 = 391 (100%)
R 185 of 391 ~ 47.31%
G 130 of 391 ~ 33.25%
B 76 of 391 ~ 19.44%
#B9824C color CMYK value is (0,30,59,27).
CMYK: (0,30,59,27) C0M30Y59K27 (0%,30%,59%,27%) (0.00/0.30/0.59/0.27)
B9 | 82 | 4C | |
---|---|---|---|
RGB | 185 | 130 | 76 |
HSL | 30° | 43.78% | 51.18% |
HSB/HSV | 30° | 58.92% | 72.55% |
CMYK | 0.00% | 29.73% | 58.92% |
27.45% |
HEX | B9 | 82 | 4C |
Decimal | 185 | 130 | 76 |
Binary | 10111001 | 10000010 | 1001100 |
Octal | 271 | 202 | 114 |
Examples of css and html codes for elements with #B9824C color. Also use rgb(185,130,76) instead hex code.
.myTextColor { color: #B9824C; }
<p style="color:#B9824C">This sample text font color is #B9824C.</p>
This text font color is #B9824C.
.myBgColor { background-color: #B9824C; }
<div style="background-color:#B9824C">Inner text</div>
This div background color is #B9824C.
.myBorderColor { border: 1px solid #B9824C; }
<div style="border:3px solid #B9824C">Div</div>
This div border color is #B9824C.
.myOpacity80 { color: #B9824C; opacity: 0.8; }
<p style="color:#B9824C;opacity:0.8;">80%</p>
Text with #B9824C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B9824C;}
<p style="text-shadow: 3px 3px 1px #B9824C">Text here.</p>
This text has shadow with #B9824C color.
.textShadow {text-shadow: 3px 3px 1px #B9824C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B9824C, 5px 5px 20px red">Text here.</p>
This text has shadow with #B9824C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B9824C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B9824C, Direction=45, Strength=4)">Text</p>
This text has shadow with #B9824C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B9824C; -webkit-box-shadow: 1px 1px 3px 2px #B9824C; box-shadow: 1px 1px 3px 2px #B9824C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B9824C; -webkit-box-shadow: 1px 1px 3px 2px #B9824C; box-shadow:1px 1px 3px 2px #B9824C;">
Div content here</div>
This text has color #B9824C on black background.
This text has color #B9824C on white background.
This text has black color on #B9824C background.
This text has white color on #B9824C background.