HEX: #7D4F20
RGB: (125,79,32)
#7D4F20 contains mainly red and green colors. Web safe color of #7D4F20 is #666633 (or #663).
#7D4F20 color RGB value is (125,79,32).
RGB: (125,79,32) (49%,31%,13%)
R 125 of 255 = 49%
G 79 of 255 = 31%
B 32 of 255 = 13%
R + G + B ~ 31%. #7D4F20 is quite dark color.
R + G + B =
125 + 79 + 32 = 236 (100%)
R 125 of 236 ~ 52.97%
G 79 of 236 ~ 33.47%
B 32 of 236 ~ 13.56%
#7D4F20 color CMYK value is (0,37,74,51).
CMYK: (0,37,74,51) C0M37Y74K51 (0%,37%,74%,51%) (0.00/0.37/0.74/0.51)
7D | 4F | 20 | |
---|---|---|---|
RGB | 125 | 79 | 32 |
HSL | 30° | 59.24% | 30.78% |
HSB/HSV | 30° | 74.40% | 49.02% |
CMYK | 0.00% | 36.80% | 74.40% |
50.98% |
HEX | 7D | 4F | 20 |
Decimal | 125 | 79 | 32 |
Binary | 1111101 | 1001111 | 100000 |
Octal | 175 | 117 | 40 |
Examples of css and html codes for elements with #7D4F20 color. Also use rgb(125,79,32) instead hex code.
.myTextColor { color: #7D4F20; }
<p style="color:#7D4F20">This sample text font color is #7D4F20.</p>
This text font color is #7D4F20.
.myBgColor { background-color: #7D4F20; }
<div style="background-color:#7D4F20">Inner text</div>
This div background color is #7D4F20.
.myBorderColor { border: 1px solid #7D4F20; }
<div style="border:3px solid #7D4F20">Div</div>
This div border color is #7D4F20.
.myOpacity80 { color: #7D4F20; opacity: 0.8; }
<p style="color:#7D4F20;opacity:0.8;">80%</p>
Text with #7D4F20 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7D4F20;}
<p style="text-shadow: 3px 3px 1px #7D4F20">Text here.</p>
This text has shadow with #7D4F20 color.
.textShadow {text-shadow: 3px 3px 1px #7D4F20, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7D4F20, 5px 5px 20px red">Text here.</p>
This text has shadow with #7D4F20 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7D4F20, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7D4F20, Direction=45, Strength=4)">Text</p>
This text has shadow with #7D4F20 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7D4F20; -webkit-box-shadow: 1px 1px 3px 2px #7D4F20; box-shadow: 1px 1px 3px 2px #7D4F20; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7D4F20; -webkit-box-shadow: 1px 1px 3px 2px #7D4F20; box-shadow:1px 1px 3px 2px #7D4F20;">
Div content here</div>
This text has color #7D4F20 on black background.
This text has color #7D4F20 on white background.
This text has black color on #7D4F20 background.
This text has white color on #7D4F20 background.