HEX: #B66A1C
RGB: (182,106,28)
#B66A1C contains mainly red color. Web safe color of #B66A1C is #CC6633 (or #C63).
#B66A1C color RGB value is (182,106,28).
RGB: (182,106,28) (71%,42%,11%)
R 182 of 255 = 71%
G 106 of 255 = 42%
B 28 of 255 = 11%
R + G + B ~ 41%. #B66A1C is middle color (not dark and not light).
R + G + B =
182 + 106 + 28 = 316 (100%)
R 182 of 316 ~ 57.59%
G 106 of 316 ~ 33.54%
B 28 of 316 ~ 8.86%
#B66A1C color CMYK value is (0,42,85,29).
CMYK: (0,42,85,29) C0M42Y85K29 (0%,42%,85%,29%) (0.00/0.42/0.85/0.29)
B6 | 6A | 1C | |
---|---|---|---|
RGB | 182 | 106 | 28 |
HSL | 30° | 73.33% | 41.18% |
HSB/HSV | 30° | 84.62% | 71.37% |
CMYK | 0.00% | 41.76% | 84.62% |
28.63% |
HEX | B6 | 6A | 1C |
Decimal | 182 | 106 | 28 |
Binary | 10110110 | 1101010 | 11100 |
Octal | 266 | 152 | 34 |
Examples of css and html codes for elements with #B66A1C color. Also use rgb(182,106,28) instead hex code.
.myTextColor { color: #B66A1C; }
<p style="color:#B66A1C">This sample text font color is #B66A1C.</p>
This text font color is #B66A1C.
.myBgColor { background-color: #B66A1C; }
<div style="background-color:#B66A1C">Inner text</div>
This div background color is #B66A1C.
.myBorderColor { border: 1px solid #B66A1C; }
<div style="border:3px solid #B66A1C">Div</div>
This div border color is #B66A1C.
.myOpacity80 { color: #B66A1C; opacity: 0.8; }
<p style="color:#B66A1C;opacity:0.8;">80%</p>
Text with #B66A1C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B66A1C;}
<p style="text-shadow: 3px 3px 1px #B66A1C">Text here.</p>
This text has shadow with #B66A1C color.
.textShadow {text-shadow: 3px 3px 1px #B66A1C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B66A1C, 5px 5px 20px red">Text here.</p>
This text has shadow with #B66A1C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B66A1C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B66A1C, Direction=45, Strength=4)">Text</p>
This text has shadow with #B66A1C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B66A1C; -webkit-box-shadow: 1px 1px 3px 2px #B66A1C; box-shadow: 1px 1px 3px 2px #B66A1C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B66A1C; -webkit-box-shadow: 1px 1px 3px 2px #B66A1C; box-shadow:1px 1px 3px 2px #B66A1C;">
Div content here</div>
This text has color #B66A1C on black background.
This text has color #B66A1C on white background.
This text has black color on #B66A1C background.
This text has white color on #B66A1C background.