HEX: #BD7D3D
RGB: (189,125,61)
#BD7D3D contains mainly red color. Web safe color of #BD7D3D is #CC6633 (or #C63).
#BD7D3D color RGB value is (189,125,61).
RGB: (189,125,61) (74%,49%,24%)
R 189 of 255 = 74%
G 125 of 255 = 49%
B 61 of 255 = 24%
R + G + B ~ 49%. #BD7D3D is middle color (not dark and not light).
R + G + B =
189 + 125 + 61 = 375 (100%)
R 189 of 375 ~ 50.4%
G 125 of 375 ~ 33.33%
B 61 of 375 ~ 16.27%
#BD7D3D color CMYK value is (0,34,68,26).
CMYK: (0,34,68,26) C0M34Y68K26 (0%,34%,68%,26%) (0.00/0.34/0.68/0.26)
BD | 7D | 3D | |
---|---|---|---|
RGB | 189 | 125 | 61 |
HSL | 30° | 51.20% | 49.02% |
HSB/HSV | 30° | 67.72% | 74.12% |
CMYK | 0.00% | 33.86% | 67.72% |
25.88% |
HEX | BD | 7D | 3D |
Decimal | 189 | 125 | 61 |
Binary | 10111101 | 1111101 | 111101 |
Octal | 275 | 175 | 75 |
Examples of css and html codes for elements with #BD7D3D color. Also use rgb(189,125,61) instead hex code.
.myTextColor { color: #BD7D3D; }
<p style="color:#BD7D3D">This sample text font color is #BD7D3D.</p>
This text font color is #BD7D3D.
.myBgColor { background-color: #BD7D3D; }
<div style="background-color:#BD7D3D">Inner text</div>
This div background color is #BD7D3D.
.myBorderColor { border: 1px solid #BD7D3D; }
<div style="border:3px solid #BD7D3D">Div</div>
This div border color is #BD7D3D.
.myOpacity80 { color: #BD7D3D; opacity: 0.8; }
<p style="color:#BD7D3D;opacity:0.8;">80%</p>
Text with #BD7D3D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BD7D3D;}
<p style="text-shadow: 3px 3px 1px #BD7D3D">Text here.</p>
This text has shadow with #BD7D3D color.
.textShadow {text-shadow: 3px 3px 1px #BD7D3D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BD7D3D, 5px 5px 20px red">Text here.</p>
This text has shadow with #BD7D3D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BD7D3D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BD7D3D, Direction=45, Strength=4)">Text</p>
This text has shadow with #BD7D3D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BD7D3D; -webkit-box-shadow: 1px 1px 3px 2px #BD7D3D; box-shadow: 1px 1px 3px 2px #BD7D3D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BD7D3D; -webkit-box-shadow: 1px 1px 3px 2px #BD7D3D; box-shadow:1px 1px 3px 2px #BD7D3D;">
Div content here</div>
This text has color #BD7D3D on black background.
This text has color #BD7D3D on white background.
This text has black color on #BD7D3D background.
This text has white color on #BD7D3D background.