HEX: #B97D4B
RGB: (185,125,75)
#B97D4B contains mainly red color. Web safe color of #B97D4B is #CC6633 (or #C63).
#B97D4B color RGB value is (185,125,75).
RGB: (185,125,75) (73%,49%,29%)
R 185 of 255 = 73%
G 125 of 255 = 49%
B 75 of 255 = 29%
R + G + B ~ 50%. #B97D4B is middle color (not dark and not light).
R + G + B =
185 + 125 + 75 = 385 (100%)
R 185 of 385 ~ 48.05%
G 125 of 385 ~ 32.47%
B 75 of 385 ~ 19.48%
#B97D4B color CMYK value is (0,32,59,27).
CMYK: (0,32,59,27) C0M32Y59K27 (0%,32%,59%,27%) (0.00/0.32/0.59/0.27)
B9 | 7D | 4B | |
---|---|---|---|
RGB | 185 | 125 | 75 |
HSL | 27° | 44.00% | 50.98% |
HSB/HSV | 27° | 59.46% | 72.55% |
CMYK | 0.00% | 32.43% | 59.46% |
27.45% |
HEX | B9 | 7D | 4B |
Decimal | 185 | 125 | 75 |
Binary | 10111001 | 1111101 | 1001011 |
Octal | 271 | 175 | 113 |
Examples of css and html codes for elements with #B97D4B color. Also use rgb(185,125,75) instead hex code.
.myTextColor { color: #B97D4B; }
<p style="color:#B97D4B">This sample text font color is #B97D4B.</p>
This text font color is #B97D4B.
.myBgColor { background-color: #B97D4B; }
<div style="background-color:#B97D4B">Inner text</div>
This div background color is #B97D4B.
.myBorderColor { border: 1px solid #B97D4B; }
<div style="border:3px solid #B97D4B">Div</div>
This div border color is #B97D4B.
.myOpacity80 { color: #B97D4B; opacity: 0.8; }
<p style="color:#B97D4B;opacity:0.8;">80%</p>
Text with #B97D4B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B97D4B;}
<p style="text-shadow: 3px 3px 1px #B97D4B">Text here.</p>
This text has shadow with #B97D4B color.
.textShadow {text-shadow: 3px 3px 1px #B97D4B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B97D4B, 5px 5px 20px red">Text here.</p>
This text has shadow with #B97D4B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B97D4B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B97D4B, Direction=45, Strength=4)">Text</p>
This text has shadow with #B97D4B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B97D4B; -webkit-box-shadow: 1px 1px 3px 2px #B97D4B; box-shadow: 1px 1px 3px 2px #B97D4B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B97D4B; -webkit-box-shadow: 1px 1px 3px 2px #B97D4B; box-shadow:1px 1px 3px 2px #B97D4B;">
Div content here</div>
This text has color #B97D4B on black background.
This text has color #B97D4B on white background.
This text has black color on #B97D4B background.
This text has white color on #B97D4B background.