HEX: #B9735C
RGB: (185,115,92)
#B9735C contains mainly red color. Web safe color of #B9735C is #CC6666 (or #C66).
#B9735C color RGB value is (185,115,92).
RGB: (185,115,92) (73%,45%,36%)
R 185 of 255 = 73%
G 115 of 255 = 45%
B 92 of 255 = 36%
R + G + B ~ 51%. #B9735C is middle color (not dark and not light).
R + G + B =
185 + 115 + 92 = 392 (100%)
R 185 of 392 ~ 47.19%
G 115 of 392 ~ 29.34%
B 92 of 392 ~ 23.47%
#B9735C color CMYK value is (0,38,50,27).
CMYK: (0,38,50,27) C0M38Y50K27 (0%,38%,50%,27%) (0.00/0.38/0.50/0.27)
B9 | 73 | 5C | |
---|---|---|---|
RGB | 185 | 115 | 92 |
HSL | 15° | 39.91% | 54.31% |
HSB/HSV | 15° | 50.27% | 72.55% |
CMYK | 0.00% | 37.84% | 50.27% |
27.45% |
HEX | B9 | 73 | 5C |
Decimal | 185 | 115 | 92 |
Binary | 10111001 | 1110011 | 1011100 |
Octal | 271 | 163 | 134 |
Examples of css and html codes for elements with #B9735C color. Also use rgb(185,115,92) instead hex code.
.myTextColor { color: #B9735C; }
<p style="color:#B9735C">This sample text font color is #B9735C.</p>
This text font color is #B9735C.
.myBgColor { background-color: #B9735C; }
<div style="background-color:#B9735C">Inner text</div>
This div background color is #B9735C.
.myBorderColor { border: 1px solid #B9735C; }
<div style="border:3px solid #B9735C">Div</div>
This div border color is #B9735C.
.myOpacity80 { color: #B9735C; opacity: 0.8; }
<p style="color:#B9735C;opacity:0.8;">80%</p>
Text with #B9735C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B9735C;}
<p style="text-shadow: 3px 3px 1px #B9735C">Text here.</p>
This text has shadow with #B9735C color.
.textShadow {text-shadow: 3px 3px 1px #B9735C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B9735C, 5px 5px 20px red">Text here.</p>
This text has shadow with #B9735C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B9735C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B9735C, Direction=45, Strength=4)">Text</p>
This text has shadow with #B9735C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B9735C; -webkit-box-shadow: 1px 1px 3px 2px #B9735C; box-shadow: 1px 1px 3px 2px #B9735C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B9735C; -webkit-box-shadow: 1px 1px 3px 2px #B9735C; box-shadow:1px 1px 3px 2px #B9735C;">
Div content here</div>
This text has color #B9735C on black background.
This text has color #B9735C on white background.
This text has black color on #B9735C background.
This text has white color on #B9735C background.